summaryrefslogtreecommitdiff
path: root/lobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.c')
-rw-r--r--lobject.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lobject.c b/lobject.c
index a57db0c3..34cb1ad1 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,12 +1,11 @@
1/* 1/*
2** $Id: lobject.c,v 1.80 2002/05/15 18:57:44 roberto Exp roberto $ 2** $Id: lobject.c,v 1.81 2002/05/16 18:39:46 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*/
6 6
7#include <ctype.h> 7#include <ctype.h>
8#include <stdarg.h> 8#include <stdarg.h>
9#include <stdio.h>
10#include <stdlib.h> 9#include <stdlib.h>
11#include <string.h> 10#include <string.h>
12 11
@@ -135,7 +134,7 @@ const char *luaO_pushvfstring (lua_State *L, const char *fmt, va_list argp) {
135 fmt = e+2; 134 fmt = e+2;
136 } 135 }
137 pushstr(L, fmt); 136 pushstr(L, fmt);
138 luaV_strconc(L, n+1, L->top - L->ci->base - 1); 137 luaV_concat(L, n+1, L->top - L->ci->base - 1);
139 L->top -= n; 138 L->top -= n;
140 return svalue(L->top - 1); 139 return svalue(L->top - 1);
141} 140}