diff options
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.280 2011/10/24 14:54:05 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.281 2011/10/24 16:53:05 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 |
@@ -254,7 +254,8 @@ LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc, | |||
254 | #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) | 254 | #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) |
255 | 255 | ||
256 | LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt, | 256 | LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt, |
257 | const char *chunkname); | 257 | const char *chunkname, |
258 | const char *mode); | ||
258 | 259 | ||
259 | LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data); | 260 | LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data); |
260 | 261 | ||