summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-07-05 16:32:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-07-05 16:32:42 -0300
commit99246689317ebe37b56940f05675337059ed1c8b (patch)
tree0fd48d3be8c1ac3f74ad24090f5ef757d49cac8a /lua.h
parent89ef91a7fe985b5d3c5d16147b8325467a1742f1 (diff)
downloadlua-99246689317ebe37b56940f05675337059ed1c8b.tar.gz
lua-99246689317ebe37b56940f05675337059ed1c8b.tar.bz2
lua-99246689317ebe37b56940f05675337059ed1c8b.zip
LUA_MINSTACK has a fixed value
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h9
1 files 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 @@
1/* 1/*
2** $Id: lua.h,v 1.98 2001/06/06 18:00:19 roberto Exp roberto $ 2** $Id: lua.h,v 1.99 2001/06/28 14:45:44 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: info@lua.org 5** e-mail: info@lua.org
@@ -69,6 +69,9 @@ typedef int (*lua_CFunction) (lua_State *L);
69#define LUA_NOTAG (-2) 69#define LUA_NOTAG (-2)
70 70
71 71
72/* minimum Lua stack available to a C function */
73#define LUA_MINSTACK 20
74
72 75
73/* 76/*
74** generic extra include file 77** generic extra include file
@@ -78,10 +81,6 @@ typedef int (*lua_CFunction) (lua_State *L);
78#endif 81#endif
79 82
80 83
81/* minimum Lua stack available to a C function */
82#define LUA_MINSTACK 20
83
84
85/* Lua numerical type */ 84/* Lua numerical type */
86#ifndef LUA_NUMBER 85#ifndef LUA_NUMBER
87#define LUA_NUMBER double 86#define LUA_NUMBER double