summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-07-13 11:37:36 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-07-13 11:37:36 -0300
commit3fa47c5dc1e72eb806feff4616e56a56513d7a39 (patch)
tree05b718bf2d9066eeb7575170ef849c7aed017158
parent0782416a747a8ebb3570f3ac84918eaa4386f213 (diff)
downloadlua-3fa47c5dc1e72eb806feff4616e56a56513d7a39.tar.gz
lua-3fa47c5dc1e72eb806feff4616e56a56513d7a39.tar.bz2
lua-3fa47c5dc1e72eb806feff4616e56a56513d7a39.zip
bugs now are against 5.1.1
-rw-r--r--bugs7
1 files changed, 7 insertions, 0 deletions
diff --git a/bugs b/bugs
index 1c8de3fc..c0eb3271 100644
--- a/bugs
+++ b/bugs
@@ -1014,6 +1014,11 @@ patch = [[
1014 1014
1015} 1015}
1016 1016
1017
1018
1019-----------------------------------------------------------------
1020-- Lua 5.1.1
1021
1017Bug{ 1022Bug{
1018what = [[list constructors have wrong limit]], 1023what = [[list constructors have wrong limit]],
1019 1024
@@ -1035,6 +1040,8 @@ print(#x)
1035 1040
1036patch = [[ 1041patch = [[
1037* lparser.c: 1042* lparser.c:
1043@@ -489,7 +489,7 @@
1044
1038 static void listfield (LexState *ls, struct ConsControl *cc) { 1045 static void listfield (LexState *ls, struct ConsControl *cc) {
1039 expr(ls, &cc->v); 1046 expr(ls, &cc->v);
1040- luaY_checklimit(ls->fs, cc->na, MAXARG_Bx, "items in a constructor"); 1047- luaY_checklimit(ls->fs, cc->na, MAXARG_Bx, "items in a constructor");