summaryrefslogtreecommitdiff
path: root/ldo.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-22 16:01:46 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-22 16:01:46 -0200
commitdbc5451bea323e8908fcedff2a89bcf73ed5cb57 (patch)
tree05da7486e49d5f0e2670d275822629bdcd8aa09c /ldo.c
parent2d2d45976ce41de04e9007c8a78a8ba244d1fdc5 (diff)
downloadlua-github-dbc5451bea323e8908fcedff2a89bcf73ed5cb57.tar.gz
comments
Diffstat (limited to 'ldo.c')
-rw-r--r--ldo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 84c244e6..cf2948c6 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
/*
-** $Id: ldo.c,v 1.207 2002/11/21 17:19:11 roberto Exp roberto $
+** $Id: ldo.c,v 1.208 2002/11/22 17:16:52 roberto Exp roberto $
** Stack and Call structure of Lua
** See Copyright Notice in lua.h
*/
@@ -246,7 +246,7 @@ StkId luaD_precall (lua_State *L, StkId func) {
ci->state = CI_C; /* a C function */
if (L->hookmask & LUA_MASKCALL) {
luaD_callhook(L, LUA_HOOKCALL, -1);
- ci = L->ci; /* previous call may realocate `ci' */
+ ci = L->ci; /* previous call may reallocate `ci' */
}
lua_unlock(L);
#ifdef LUA_COMPATUPVALUES