aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstate.h b/lstate.h
index 653e1a01..efceed69 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.130 2015/12/16 16:39:38 roberto Exp roberto $ 2** $Id: lstate.h,v 2.131 2016/06/16 13:36:09 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*/
@@ -104,6 +104,7 @@ typedef struct CallInfo {
104#define CIST_TAIL (1<<5) /* call was tail called */ 104#define CIST_TAIL (1<<5) /* call was tail called */
105#define CIST_HOOKYIELD (1<<6) /* last hook called yielded */ 105#define CIST_HOOKYIELD (1<<6) /* last hook called yielded */
106#define CIST_LEQ (1<<7) /* using __lt for __le */ 106#define CIST_LEQ (1<<7) /* using __lt for __le */
107#define CIST_FIN (1<<8) /* call is running a finalizer */
107 108
108#define isLua(ci) ((ci)->callstatus & CIST_LUA) 109#define isLua(ci) ((ci)->callstatus & CIST_LUA)
109 110