aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index d2bcd5c9..b3833ddd 100644
--- a/lua.h
+++ b/lua.h
@@ -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
278LUA_API int (lua_load) (lua_State *L, lua_Reader reader, void *dt, 278LUA_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
282LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip); 281LUA_API int (lua_dump) (lua_State *L, lua_Writer writer, void *data, int strip);
283 282