diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-08-15 10:48:53 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-08-15 10:48:53 -0300 |
commit | 433cb1d13a767023e03111fc09c46903f40366ff (patch) | |
tree | df5d105368debb523ea838c3e0c06e60c94ae9ca /lundump.h | |
parent | d66198719d10e393dfba57c1f4aeea307cdb49ea (diff) | |
download | lua-433cb1d13a767023e03111fc09c46903f40366ff.tar.gz lua-433cb1d13a767023e03111fc09c46903f40366ff.tar.bz2 lua-433cb1d13a767023e03111fc09c46903f40366ff.zip |
no more checks for non-default compilation options + luaU_dump has
new option to strip debug info
Diffstat (limited to 'lundump.h')
-rw-r--r-- | lundump.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lundump.h,v 1.31 2003/04/10 17:39:41 roberto Exp roberto $ | 2 | ** $Id: lundump.h,v 1.30 2003/04/07 20:34:20 lhf Exp lhf $ |
3 | ** load pre-compiled Lua chunks | 3 | ** load pre-compiled Lua chunks |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -17,7 +17,7 @@ Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff); | |||
17 | int luaU_endianness (void); | 17 | int luaU_endianness (void); |
18 | 18 | ||
19 | /* dump one chunk; from ldump.c */ | 19 | /* dump one chunk; from ldump.c */ |
20 | void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data); | 20 | int luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data, int strip); |
21 | 21 | ||
22 | /* print one chunk; from print.c */ | 22 | /* print one chunk; from print.c */ |
23 | void luaU_print (const Proto* Main); | 23 | void luaU_print (const Proto* Main); |