aboutsummaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lobject.c b/lobject.c
index 8367330f..610797f5 100644
--- a/lobject.c
+++ b/lobject.c
@@ -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}