diff options
Diffstat (limited to 'lobject.c')
-rw-r--r-- | lobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.c,v 1.91 2002/10/22 17:18:28 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 1.92 2002/11/07 15:37:10 roberto Exp roberto $ |
3 | ** Some generic functions over Lua objects | 3 | ** Some generic functions over Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -128,7 +128,7 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) { | |||
128 | fmt = e+2; | 128 | fmt = e+2; |
129 | } | 129 | } |
130 | pushstr(L, fmt); | 130 | pushstr(L, fmt); |
131 | luaV_concat(L, n+1, L->top - L->ci->base - 1); | 131 | luaV_concat(L, n+1, L->top - L->base - 1); |
132 | L->top -= n; | 132 | L->top -= n; |
133 | return svalue(L->top - 1); | 133 | return svalue(L->top - 1); |
134 | } | 134 | } |