aboutsummaryrefslogtreecommitdiff
path: root/ldo.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldo.h')
-rw-r--r--ldo.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/ldo.h b/ldo.h
index c8d0f872..ad86a09c 100644
--- a/ldo.h
+++ b/ldo.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.h,v 2.8 2006/07/11 15:53:29 roberto Exp roberto $ 2** $Id: ldo.h,v 2.9 2008/07/03 14:24:36 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -28,12 +28,6 @@
28#define restoreci(L,n) ((CallInfo *)((char *)L->base_ci + (n))) 28#define restoreci(L,n) ((CallInfo *)((char *)L->base_ci + (n)))
29 29
30 30
31/* results from luaD_precall */
32#define PCRLUA 0 /* initiated a call to a Lua function */
33#define PCRC 1 /* did a call to a C function */
34#define PCRYIELD 2 /* C funtion yielded */
35
36
37/* type of protected functions, to be ran by `runprotected' */ 31/* type of protected functions, to be ran by `runprotected' */
38typedef void (*Pfunc) (lua_State *L, void *ud); 32typedef void (*Pfunc) (lua_State *L, void *ud);
39 33