summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-01 13:50:18 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-12-01 13:50:18 -0200
commit23b38176a7ad8d8f830727bcee1669473cf3c1c1 (patch)
tree16f02a39027de00ceb847b4f16399056147c057b /lua.h
parent97e2dab1fb1b90f806eeb4da51bb74a2cdb6ca54 (diff)
downloadlua-23b38176a7ad8d8f830727bcee1669473cf3c1c1.tar.gz
lua-23b38176a7ad8d8f830727bcee1669473cf3c1c1.tar.bz2
lua-23b38176a7ad8d8f830727bcee1669473cf3c1c1.zip
`LUA_FIRSTINDEX' should not be configurable
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 5d8b3a7a..8e005d09 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.193 2004/09/15 20:39:42 roberto Exp roberto $ 2** $Id: lua.h,v 1.194 2004/10/18 12:51:44 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
@@ -81,6 +81,10 @@ typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
81#define LUA_TTHREAD 8 81#define LUA_TTHREAD 8
82 82
83 83
84/* first index for arrays */
85#define LUA_FIRSTINDEX 1
86
87
84/* minimum Lua stack available to a C function */ 88/* minimum Lua stack available to a C function */
85#define LUA_MINSTACK 20 89#define LUA_MINSTACK 20
86 90