diff options
Diffstat (limited to '')
-rw-r--r-- | lstate.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ void luaE_checkcstack (lua_State *L) { | |||
132 | if (getCcalls(L) == LUAI_MAXCCALLS) | 132 | if (getCcalls(L) == LUAI_MAXCCALLS) |
133 | luaG_runerror(L, "C stack overflow"); | 133 | luaG_runerror(L, "C stack overflow"); |
134 | else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11)) | 134 | else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11)) |
135 | luaD_throw(L, LUA_ERRERR); /* error while handling stack error */ | 135 | luaD_errerr(L); /* error while handling stack error */ |
136 | } | 136 | } |
137 | 137 | ||
138 | 138 | ||