lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 99246689317ebe37b56940f05675337059ed1c8b
parent 89ef91a7fe985b5d3c5d16147b8325467a1742f1
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu,  5 Jul 2001 16:32:20 -0300

LUA_MINSTACK has a fixed value

Diffstat:
Mlua.h | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/lua.h b/lua.h @@ -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