aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/lstate.h b/lstate.h
index c1c38204..983aa0d5 100644
--- a/lstate.h
+++ b/lstate.h
@@ -144,12 +144,6 @@
144/* Decrement the number of non-yieldable calls */ 144/* Decrement the number of non-yieldable calls */
145#define decnny(L) ((L)->nCcalls -= 0x10000) 145#define decnny(L) ((L)->nCcalls -= 0x10000)
146 146
147/* Increment the number of non-yieldable calls and decrement nCcalls */
148#define incXCcalls(L) ((L)->nCcalls += 0x10000 - CSTACKCF)
149
150/* Decrement the number of non-yieldable calls and increment nCcalls */
151#define decXCcalls(L) ((L)->nCcalls -= 0x10000 - CSTACKCF)
152
153 147
154 148
155 149
@@ -389,7 +383,6 @@ LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1);
389LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L); 383LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
390LUAI_FUNC void luaE_freeCI (lua_State *L); 384LUAI_FUNC void luaE_freeCI (lua_State *L);
391LUAI_FUNC void luaE_shrinkCI (lua_State *L); 385LUAI_FUNC void luaE_shrinkCI (lua_State *L);
392LUAI_FUNC void luaE_enterCcall (lua_State *L);
393LUAI_FUNC void luaE_warning (lua_State *L, const char *msg, int tocont); 386LUAI_FUNC void luaE_warning (lua_State *L, const char *msg, int tocont);
394LUAI_FUNC void luaE_warnerror (lua_State *L, const char *where); 387LUAI_FUNC void luaE_warnerror (lua_State *L, const char *where);
395 388