aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua.h4
-rw-r--r--lundump.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index ac4e7f1f..2dfba6af 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.175 2003/03/18 12:31:39 roberto Exp roberto $ 2** $Id: lua.h,v 1.176 2003/05/14 21:06:56 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil 4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
5** http://www.lua.org mailto:info@lua.org 5** http://www.lua.org mailto:info@lua.org
@@ -19,6 +19,8 @@
19#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo & W. Celes" 19#define LUA_AUTHORS "R. Ierusalimschy, L. H. de Figueiredo & W. Celes"
20 20
21 21
22/* mark for precompiled code (`<esc>Lua') */
23#define LUA_SIGNATURE "\033Lua"
22 24
23/* option for multiple returns in `lua_pcall' and `lua_call' */ 25/* option for multiple returns in `lua_pcall' and `lua_call' */
24#define LUA_MULTRET (-1) 26#define LUA_MULTRET (-1)
diff --git a/lundump.h b/lundump.h
index c7e6959b..d42cab0b 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.h,v 1.30 2003/04/07 20:34:20 lhf Exp $ 2** $Id: lundump.h,v 1.31 2003/04/10 17:39:41 roberto Exp roberto $
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*/
@@ -23,7 +23,6 @@ void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data);
23void luaU_print (const Proto* Main); 23void luaU_print (const Proto* Main);
24 24
25/* definitions for headers of binary files */ 25/* definitions for headers of binary files */
26#define LUA_SIGNATURE "\033Lua" /* binary files start with "<esc>Lua" */
27#define VERSION 0x50 /* last format change was in 5.0 */ 26#define VERSION 0x50 /* last format change was in 5.0 */
28#define VERSION0 0x50 /* last major change was in 5.0 */ 27#define VERSION0 0x50 /* last major change was in 5.0 */
29 28