From 59ce42dbd5a2dd2dd8bfbbf3e856742a535afc5b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 27 Feb 2003 09:32:30 -0300 Subject: detail --- ldebug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ldebug.c b/ldebug.c index e308e080..d768c156 100644 --- a/ldebug.c +++ b/ldebug.c @@ -1,5 +1,5 @@ /* -** $Id: ldebug.c,v 1.145 2003/02/19 10:28:58 roberto Exp roberto $ +** $Id: ldebug.c,v 1.146 2003/02/27 11:52:30 roberto Exp roberto $ ** Debug Interface ** See Copyright Notice in lua.h */ @@ -528,7 +528,7 @@ void luaG_typeerror (lua_State *L, const TObject *o, const char *op) { void luaG_concaterror (lua_State *L, StkId p1, StkId p2) { if (ttisstring(p1)) p1 = p2; lua_assert(!ttisstring(p1)); - luaG_typeerror(L, p1, "concat"); + luaG_typeerror(L, p1, "concatenate"); } -- cgit v1.2.3-55-g6feb