diff options
author | wm4 <wm4@nowhere> | 2013-12-17 01:15:48 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-12-17 01:15:48 +0100 |
commit | 053c743724e928ca70070f5d43193836851dd91c (patch) | |
tree | eb86e81e79592e7da94ba351ccd42e2503706d16 /player | |
parent | 56eafe33448780231cd2626239cac443e1cdbab4 (diff) |
Rename mp_lua.c/h to lua.c/h
Diffstat (limited to 'player')
-rw-r--r-- | player/command.c | 2 | ||||
-rw-r--r-- | player/lua.c (renamed from player/mp_lua.c) | 2 | ||||
-rw-r--r-- | player/lua.h (renamed from player/mp_lua.h) | 0 | ||||
-rw-r--r-- | player/main.c | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/player/command.c b/player/command.c index 35a6ed31bc..8701fff1ec 100644 --- a/player/command.c +++ b/player/command.c @@ -73,7 +73,7 @@ #include "osdep/io.h" #include "core.h" -#include "mp_lua.h" +#include "lua.h" struct command_ctx { int events; diff --git a/player/mp_lua.c b/player/lua.c index 9bae3379ce..d000c85c5f 100644 --- a/player/mp_lua.c +++ b/player/lua.c @@ -18,7 +18,7 @@ #include "sub/osd.h" #include "core.h" #include "command.h" -#include "mp_lua.h" +#include "lua.h" // List of builtin modules and their contents as strings. // All these are generated from player/lua/*.lua diff --git a/player/mp_lua.h b/player/lua.h index 050548e2d2..050548e2d2 100644 --- a/player/mp_lua.h +++ b/player/lua.h diff --git a/player/main.c b/player/main.c index bef1f69351..d590afc42a 100644 --- a/player/main.c +++ b/player/main.c @@ -61,7 +61,7 @@ #include "video/out/vo.h" #include "core.h" -#include "mp_lua.h" +#include "lua.h" #include "command.h" #include "screenshot.h" |