no more LUA_FIRSTINDEX

This commit is contained in:
Roberto Ierusalimschy
2005-03-28 14:17:53 -03:00
parent 04c41444e2
commit ade585bdf9
6 changed files with 21 additions and 24 deletions

5
lua.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lua.h,v 1.203 2005/03/22 16:04:29 roberto Exp roberto $
** $Id: lua.h,v 1.204 2005/03/23 17:51:11 roberto Exp roberto $
** Lua - An Extensible Extension Language
** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
** 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);
#define LUA_TTHREAD 8
/* first index for arrays */
#define LUA_FIRSTINDEX 1
/* minimum Lua stack available to a C function */
#define LUA_MINSTACK 20