luaa: remove useless dostring()

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-06-04 10:58:11 +02:00
parent 073c658418
commit 1f3fdce144
1 changed files with 0 additions and 7 deletions

7
luaa.h
View File

@ -44,13 +44,6 @@
return 1; \
}
#define luaA_dostring(L, cmd) \
do { \
if(luaL_dostring(L, cmd)) \
warn("error executing Lua code: %s", \
lua_tostring(L, -1)); \
} while(0)
#define luaA_checktable(L, n) \
do { \
if(!lua_istable(L, n)) \