bug: Wrong assert when reporting concatenation errors.

This commit is contained in:
Roberto Ierusalimschy 2013-05-06 14:21:28 -03:00
parent fa6ea831b3
commit 2b1c2c61b0
1 changed files with 25 additions and 2 deletions

27
bugs
View File

@ -1880,8 +1880,8 @@ patch = [[
+++ lundump.c 2008/04/04 19:51:41 2.7.1.4
@@ -1,5 +1,5 @@
/*
-** $Id: bugs,v 1.120 2013/02/07 15:57:47 roberto Exp roberto $
+** $Id: bugs,v 1.120 2013/02/07 15:57:47 roberto Exp roberto $
-** $Id: bugs,v 1.121 2013/05/02 16:13:27 roberto Exp roberto $
+** $Id: bugs,v 1.121 2013/05/02 16:13:27 roberto Exp roberto $
** load precompiled Lua chunks
** See Copyright Notice in lua.h
*/
@ -2917,6 +2917,29 @@ patch = [[
]]
}
Bug{
what = [[Wrong assert when reporting concatenation errors
(manifests only when Lua is compiled in debug mode)]],
report = [[Roberto, 2013/05/05]],
since = [[?]],
fix = nil,
example = [[
-- only with Lua compiled in debug mode
print({} .. 2)
]],
patch = [[
--- ldebug.c 2013/04/12 18:48:47 2.90.1.1
+++ ldebug.c 2013/05/05 14:38:30
@@ -519,5 +519,5 @@
l_noret luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
if (ttisstring(p1) || ttisnumber(p1)) p1 = p2;
- lua_assert(!ttisstring(p1) && !ttisnumber(p2));
+ lua_assert(!ttisstring(p1) && !ttisnumber(p1));
luaG_typeerror(L, p1, "concatenate");
}
]]
}
--[=[
Bug{
what = [[ ]],