lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 3fa47c5dc1e72eb806feff4616e56a56513d7a39
parent 0782416a747a8ebb3570f3ac84918eaa4386f213
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 13 Jul 2006 11:37:13 -0300

bugs now are against 5.1.1

Diffstat:
Mbugs | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/bugs b/bugs @@ -1014,6 +1014,11 @@ patch = [[ } + + +----------------------------------------------------------------- +-- Lua 5.1.1 + Bug{ what = [[list constructors have wrong limit]], @@ -1035,6 +1040,8 @@ print(#x) patch = [[ * lparser.c: +@@ -489,7 +489,7 @@ + static void listfield (LexState *ls, struct ConsControl *cc) { expr(ls, &cc->v); - luaY_checklimit(ls->fs, cc->na, MAXARG_Bx, "items in a constructor");