aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lstate.h b/lstate.h
index 33351ca3..b5ecdb3c 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.124 2015/09/08 15:41:05 roberto Exp roberto $ 2** $Id: lstate.h,v 2.125 2015/09/22 14:18:24 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -89,8 +89,8 @@ typedef struct CallInfo {
89#define CIST_OAH (1<<0) /* original value of 'allowhook' */ 89#define CIST_OAH (1<<0) /* original value of 'allowhook' */
90#define CIST_LUA (1<<1) /* call is running a Lua function */ 90#define CIST_LUA (1<<1) /* call is running a Lua function */
91#define CIST_HOOKED (1<<2) /* call is running a debug hook */ 91#define CIST_HOOKED (1<<2) /* call is running a debug hook */
92#define CIST_REENTRY (1<<3) /* call is running on same invocation of 92#define CIST_FRESH (1<<3) /* call is running on a fresh invocation
93 luaV_execute of previous call */ 93 of luaV_execute */
94#define CIST_YPCALL (1<<4) /* call is a yieldable protected call */ 94#define CIST_YPCALL (1<<4) /* call is a yieldable protected call */
95#define CIST_TAIL (1<<5) /* call was tail called */ 95#define CIST_TAIL (1<<5) /* call was tail called */
96#define CIST_HOOKYIELD (1<<6) /* last hook called yielded */ 96#define CIST_HOOKYIELD (1<<6) /* last hook called yielded */