diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-07-13 11:37:36 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-07-13 11:37:36 -0300 |
| commit | 3fa47c5dc1e72eb806feff4616e56a56513d7a39 (patch) | |
| tree | 05b718bf2d9066eeb7575170ef849c7aed017158 | |
| parent | 0782416a747a8ebb3570f3ac84918eaa4386f213 (diff) | |
| download | lua-3fa47c5dc1e72eb806feff4616e56a56513d7a39.tar.gz lua-3fa47c5dc1e72eb806feff4616e56a56513d7a39.tar.bz2 lua-3fa47c5dc1e72eb806feff4616e56a56513d7a39.zip | |
bugs now are against 5.1.1
| -rw-r--r-- | bugs | 7 |
1 files changed, 7 insertions, 0 deletions
| @@ -1014,6 +1014,11 @@ patch = [[ | |||
| 1014 | 1014 | ||
| 1015 | } | 1015 | } |
| 1016 | 1016 | ||
| 1017 | |||
| 1018 | |||
| 1019 | ----------------------------------------------------------------- | ||
| 1020 | -- Lua 5.1.1 | ||
| 1021 | |||
| 1017 | Bug{ | 1022 | Bug{ |
| 1018 | what = [[list constructors have wrong limit]], | 1023 | what = [[list constructors have wrong limit]], |
| 1019 | 1024 | ||
| @@ -1035,6 +1040,8 @@ print(#x) | |||
| 1035 | 1040 | ||
| 1036 | patch = [[ | 1041 | patch = [[ |
| 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"); |
