aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-04-12 13:07:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-04-12 13:07:29 -0300
commitd20ff60615c3839ee14dd35c7aef0ca084fc24b4 (patch)
tree5f8a2decb76f82618e4fc340fcf952bcab166fa9 /lua.h
parentd41b467320e3962b36cf6011245e924a512a5f9a (diff)
downloadlua-d20ff60615c3839ee14dd35c7aef0ca084fc24b4.tar.gz
lua-d20ff60615c3839ee14dd35c7aef0ca084fc24b4.tar.bz2
lua-d20ff60615c3839ee14dd35c7aef0ca084fc24b4.zip
new macro LUA_NUMTAGS
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index 454c49da..1fb67628 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.265 2010/03/26 20:58:11 roberto Exp roberto $ 2** $Id: lua.h,v 1.266 2010/04/02 15:19:19 roberto Exp roberto $
3** Lua - A Scripting Language 3** Lua - A Scripting Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -81,6 +81,8 @@ typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
81#define LUA_TUSERDATA 7 81#define LUA_TUSERDATA 7
82#define LUA_TTHREAD 8 82#define LUA_TTHREAD 8
83 83
84#define LUA_NUMTAGS 9
85
84 86
85 87
86/* minimum Lua stack available to a C function */ 88/* minimum Lua stack available to a C function */