From 99246689317ebe37b56940f05675337059ed1c8b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 5 Jul 2001 16:32:42 -0300 Subject: [PATCH] LUA_MINSTACK has a fixed value --- lua.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lua.h b/lua.h index 34615dd5..1f8bbd60 100644 --- 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