aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-19 18:04:17 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-03-19 18:04:17 -0300
commitcaf74dd7314761f8e1bd512dde19db7705eccd0a (patch)
treede1b351b3d91e3f7a1e6c5386e51a2ce62084831 /lua.h
parent62840c5fadafe0abe8b524601f0367db297c0653 (diff)
downloadlua-caf74dd7314761f8e1bd512dde19db7705eccd0a.tar.gz
lua-caf74dd7314761f8e1bd512dde19db7705eccd0a.tar.bz2
lua-caf74dd7314761f8e1bd512dde19db7705eccd0a.zip
'cpcall' renamed to 'ccall' as it does not do a protected call
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 43bb8aec..17852e08 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.261 2010/01/11 17:15:11 roberto Exp roberto $ 2** $Id: lua.h,v 1.262 2010/03/13 03:57:46 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
@@ -90,7 +90,7 @@ typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize, size_t nsize);
90 90
91/* predefined values in the registry */ 91/* predefined values in the registry */
92#define LUA_RIDX_MAINTHREAD 1 92#define LUA_RIDX_MAINTHREAD 1
93#define LUA_RIDX_CPCALL 2 93#define LUA_RIDX_CCALL 2
94#define LUA_RIDX_GLOBALS 3 94#define LUA_RIDX_GLOBALS 3
95#define LUA_RIDX_LAST LUA_RIDX_GLOBALS 95#define LUA_RIDX_LAST LUA_RIDX_GLOBALS
96 96