diff options
-rw-r--r-- | lua.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.318 2014/10/15 14:27:40 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.319 2014/10/17 19:17:55 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -276,8 +276,7 @@ LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc, | |||
276 | #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) | 276 | #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) |
277 | 277 | ||
278 | LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt, | 278 | LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt, |
279 | const char *chunkname, | 279 | const char *chunkname, const char *mode); |
280 | const char *mode); | ||
281 | 280 | ||
282 | LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip); | 281 | LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip); |
283 | 282 | ||