Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
07662edf
Commit
07662edf
authored
Mar 24, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lua: remove should_die (always false here)
parent
fe3ca6c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
modules/lua/libs/misc.c
modules/lua/libs/misc.c
+0
-8
share/lua/README.txt
share/lua/README.txt
+0
-1
No files found.
modules/lua/libs/misc.c
View file @
07662edf
...
...
@@ -140,13 +140,6 @@ static int vlclua_mwait( lua_State *L )
return
0
;
}
static
int
vlclua_intf_should_die
(
lua_State
*
L
)
{
vlc_object_t
*
p_this
=
vlclua_get_this
(
L
);
lua_pushboolean
(
L
,
!
vlc_object_alive
(
p_this
)
);
return
1
;
}
static
int
vlclua_action_id
(
lua_State
*
L
)
{
vlc_action_t
i_key
=
vlc_GetActionId
(
luaL_checkstring
(
L
,
1
)
);
...
...
@@ -169,7 +162,6 @@ static const luaL_Reg vlclua_misc_reg[] = {
{
"mdate"
,
vlclua_mdate
},
{
"mwait"
,
vlclua_mwait
},
{
"should_die"
,
vlclua_intf_should_die
},
{
"quit"
,
vlclua_quit
},
{
NULL
,
NULL
}
...
...
share/lua/README.txt
View file @
07662edf
...
...
@@ -155,7 +155,6 @@ misc.action_id( name ): get the id of the given action.
misc.mdate(): Get the current date (in microseconds).
misc.mwait(): Wait for the given date (in microseconds).
misc.should_die(): Returns true if the interface should quit.
misc.quit(): Quit VLC.
Net
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment