aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-28 14:17:53 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-28 14:17:53 -0300
commitade585bdf9e286a0ec01796763ded6701c6b1a8f (patch)
treea578c006fc70e54114e1056bbbf8a014ccc30721 /lua.h
parent04c41444e22740119d3c017830276d6590b09747 (diff)
downloadlua-ade585bdf9e286a0ec01796763ded6701c6b1a8f.tar.gz
lua-ade585bdf9e286a0ec01796763ded6701c6b1a8f.tar.bz2
lua-ade585bdf9e286a0ec01796763ded6701c6b1a8f.zip
no more LUA_FIRSTINDEX
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lua.h b/lua.h
index 698d5807..c7c17f49 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.203 2005/03/22 16:04:29 roberto Exp roberto $ 2** $Id: lua.h,v 1.204 2005/03/23 17:51:11 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
@@ -83,9 +83,6 @@ typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
83#define LUA_TTHREAD 8 83#define LUA_TTHREAD 8
84 84
85 85
86/* first index for arrays */
87#define LUA_FIRSTINDEX 1
88
89 86
90/* minimum Lua stack available to a C function */ 87/* minimum Lua stack available to a C function */
91#define LUA_MINSTACK 20 88#define LUA_MINSTACK 20