From c2f065f405ac7cc27bcfcc9b2b44ac53b666efde Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 11 Jul 2005 15:48:02 -0300 Subject: detail --- ltablib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ltablib.c') diff --git a/ltablib.c b/ltablib.c index 804999e2..578c1264 100644 --- a/ltablib.c +++ b/ltablib.c @@ -1,5 +1,5 @@ /* -** $Id: ltablib.c,v 1.30 2005/05/16 21:19:00 roberto Exp roberto $ +** $Id: ltablib.c,v 1.31 2005/05/17 19:49:15 roberto Exp roberto $ ** Library for Table Manipulation ** See Copyright Notice in lua.h */ @@ -109,7 +109,7 @@ static int tremove (lua_State *L) { } -static int str_concat (lua_State *L) { +static int tconcat (lua_State *L) { luaL_Buffer b; size_t lsep; const char *sep = luaL_optlstring(L, 2, "", &lsep); @@ -237,7 +237,7 @@ static int sort (lua_State *L) { static const luaL_reg tab_funcs[] = { - {"concat", str_concat}, + {"concat", tconcat}, {"foreach", foreach}, {"foreachi", foreachi}, {"getn", getn}, -- cgit v1.2.3-55-g6feb