details (5.2 corrected to 5.2.0)

This commit is contained in:
Roberto Ierusalimschy 2013-02-07 13:57:47 -02:00
parent f4e762f688
commit ad56721948
1 changed files with 4 additions and 4 deletions

8
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.118 2012/10/01 14:05:31 roberto Exp roberto $
+** $Id: bugs,v 1.118 2012/10/01 14:05:31 roberto Exp roberto $
-** $Id: bugs,v 1.119 2012/12/03 20:18:02 roberto Exp roberto $
+** $Id: bugs,v 1.119 2012/12/03 20:18:02 roberto Exp roberto $
** load precompiled Lua chunks
** See Copyright Notice in lua.h
*/
@ -2709,7 +2709,7 @@ Bug{
what = [['pcall' may not restore previous error function when
inside coroutines]],
report = [[Alexander Gavrilov, 2012/06/12]],
since = [[5.2]],
since = [[5.2.0]],
fix = nil,
example = [[
function errfunc(x)
@ -2800,7 +2800,7 @@ Bug{
what = [[load/loadfile returns wrong result when given an environment
for a binary chunk with no upvalues]],
report = [[Vladimir Strakh, 2012/11/28]],
since = [[5.2]],
since = [[5.2.0]],
fix = nil,
example = [[
f = load(string.dump(function () return 1 end), nil, "b", {})