'setCstacklimit' renamed to 'setcstacklimit'

Function names in the API use only lowercase letters.
This commit is contained in:
Roberto Ierusalimschy
2019-09-24 14:31:06 -03:00
parent 6b2e202df5
commit 03cde80b58
5 changed files with 23 additions and 23 deletions

View File

@@ -96,7 +96,7 @@ void luaE_setdebt (global_State *g, l_mem debt) {
}
LUA_API int lua_setCstacklimit (lua_State *L, unsigned int limit) {
LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) {
global_State *g = G(L);
int ccalls;
luaE_freeCI(L); /* release unused CIs */