aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 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)