aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-02-27 09:32:30 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-02-27 09:32:30 -0300
commit59ce42dbd5a2dd2dd8bfbbf3e856742a535afc5b (patch)
treef433abd63ef261aed56f4f2710e83f3eaf222a62
parent92f6e0c1bfb27cad95d99e99912e2e0c509dcc30 (diff)
downloadlua-59ce42dbd5a2dd2dd8bfbbf3e856742a535afc5b.tar.gz
lua-59ce42dbd5a2dd2dd8bfbbf3e856742a535afc5b.tar.bz2
lua-59ce42dbd5a2dd2dd8bfbbf3e856742a535afc5b.zip
detail
-rw-r--r--ldebug.c4
1 files 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 @@
1/* 1/*
2** $Id: ldebug.c,v 1.145 2003/02/19 10:28:58 roberto Exp roberto $ 2** $Id: ldebug.c,v 1.146 2003/02/27 11:52:30 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -528,7 +528,7 @@ void luaG_typeerror (lua_State *L, const TObject *o, const char *op) {
528void luaG_concaterror (lua_State *L, StkId p1, StkId p2) { 528void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
529 if (ttisstring(p1)) p1 = p2; 529 if (ttisstring(p1)) p1 = p2;
530 lua_assert(!ttisstring(p1)); 530 lua_assert(!ttisstring(p1));
531 luaG_typeerror(L, p1, "concat"); 531 luaG_typeerror(L, p1, "concatenate");
532} 532}
533 533
534 534