aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2019-09-24 14:31:06 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2019-09-24 14:31:06 -0300
commit03cde80b58ea7f112f1b7a35c037893093b59f2e (patch)
treed92d64bca2b0ebe3e026fbf7955bf080db17e480 /lstate.c
parent6b2e202df55f3d1f3c670eab65981db6e125c758 (diff)
downloadlua-03cde80b58ea7f112f1b7a35c037893093b59f2e.tar.gz
lua-03cde80b58ea7f112f1b7a35c037893093b59f2e.tar.bz2
lua-03cde80b58ea7f112f1b7a35c037893093b59f2e.zip
'setCstacklimit' renamed to 'setcstacklimit'
Function names in the API use only lowercase letters.
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lstate.c b/lstate.c
index 86cd5fb8..1c33dcfc 100644
--- a/lstate.c
+++ b/lstate.c
@@ -96,7 +96,7 @@ void luaE_setdebt (global_State *g, l_mem debt) {
96} 96}
97 97
98 98
99LUA_API int lua_setCstacklimit (lua_State *L, unsigned int limit) { 99LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) {
100 global_State *g = G(L); 100 global_State *g = G(L);
101 int ccalls; 101 int ccalls;
102 luaE_freeCI(L); /* release unused CIs */ 102 luaE_freeCI(L); /* release unused CIs */