LUA_MINSTACK has a fixed value

This commit is contained in:
Roberto Ierusalimschy 2001-07-05 16:32:42 -03:00
parent 89ef91a7fe
commit 9924668931
1 changed files with 4 additions and 5 deletions

9
lua.h
View File

@ -1,5 +1,5 @@
/*
** $Id: lua.h,v 1.98 2001/06/06 18:00:19 roberto Exp roberto $
** $Id: lua.h,v 1.99 2001/06/28 14:45:44 roberto Exp roberto $
** Lua - An Extensible Extension Language
** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
** e-mail: info@lua.org
@ -69,6 +69,9 @@ typedef int (*lua_CFunction) (lua_State *L);
#define LUA_NOTAG (-2)
/* minimum Lua stack available to a C function */
#define LUA_MINSTACK 20
/*
** generic extra include file
@ -78,10 +81,6 @@ typedef int (*lua_CFunction) (lua_State *L);
#endif
/* minimum Lua stack available to a C function */
#define LUA_MINSTACK 20
/* Lua numerical type */
#ifndef LUA_NUMBER
#define LUA_NUMBER double