From afdb19ac82bcb7ceabd010a484505105977352ba Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 14 Apr 2010 12:14:21 -0300 Subject: no more 'ccall' nor 'cpcall' functions. (With light C functions they are obsolete.) --- lua.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 1fb67628..ea9d0f17 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.266 2010/04/02 15:19:19 roberto Exp roberto $ +** $Id: lua.h,v 1.267 2010/04/12 16:04:10 roberto Exp roberto $ ** Lua - A Scripting Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** 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); /* predefined values in the registry */ #define LUA_RIDX_MAINTHREAD 1 -#define LUA_RIDX_CCALL 2 -#define LUA_RIDX_GLOBALS 3 +#define LUA_RIDX_GLOBALS 2 #define LUA_RIDX_LAST LUA_RIDX_GLOBALS -- cgit v1.2.3-55-g6feb