diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-11-08 15:57:08 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-11-08 15:57:08 -0200 |
commit | b044b8c1824749d10ffdb0159dcd794da8c29cfe (patch) | |
tree | 17d84fcc3396dedd9fdfabbe74cd26d91c7eb41b | |
parent | a113e1498d1c069e79b593aa4f8dc7030902b924 (diff) | |
download | lua-b044b8c1824749d10ffdb0159dcd794da8c29cfe.tar.gz lua-b044b8c1824749d10ffdb0159dcd794da8c29cfe.tar.bz2 lua-b044b8c1824749d10ffdb0159dcd794da8c29cfe.zip |
detail (line break)
-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 | ||