aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-08 15:57:08 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-08 15:57:08 -0200
commitb044b8c1824749d10ffdb0159dcd794da8c29cfe (patch)
tree17d84fcc3396dedd9fdfabbe74cd26d91c7eb41b
parenta113e1498d1c069e79b593aa4f8dc7030902b924 (diff)
downloadlua-b044b8c1824749d10ffdb0159dcd794da8c29cfe.tar.gz
lua-b044b8c1824749d10ffdb0159dcd794da8c29cfe.tar.bz2
lua-b044b8c1824749d10ffdb0159dcd794da8c29cfe.zip
detail (line break)
-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