diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-14 12:14:21 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-04-14 12:14:21 -0300 |
commit | afdb19ac82bcb7ceabd010a484505105977352ba (patch) | |
tree | 9771781da1f3bd8021f181f707891b7287140b69 /lua.h | |
parent | 7dfa4cd655118faf164427356609fec31906dac2 (diff) | |
download | lua-afdb19ac82bcb7ceabd010a484505105977352ba.tar.gz lua-afdb19ac82bcb7ceabd010a484505105977352ba.tar.bz2 lua-afdb19ac82bcb7ceabd010a484505105977352ba.zip |
no more 'ccall' nor 'cpcall' functions. (With light C functions they
are obsolete.)
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.266 2010/04/02 15:19:19 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.267 2010/04/12 16:04:10 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 |
@@ -91,8 +91,7 @@ typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize); | |||
91 | 91 | ||
92 | /* predefined values in the registry */ | 92 | /* predefined values in the registry */ |
93 | #define LUA_RIDX_MAINTHREAD 1 | 93 | #define LUA_RIDX_MAINTHREAD 1 |
94 | #define LUA_RIDX_CCALL 2 | 94 | #define LUA_RIDX_GLOBALS 2 |
95 | #define LUA_RIDX_GLOBALS 3 | ||
96 | #define LUA_RIDX_LAST LUA_RIDX_GLOBALS | 95 | #define LUA_RIDX_LAST LUA_RIDX_GLOBALS |
97 | 96 | ||
98 | 97 | ||