diff options
Diffstat (limited to 'bugs')
-rw-r--r-- | bugs | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -743,3 +743,24 @@ patch = [[ | |||
743 | ]], | 743 | ]], |
744 | } | 744 | } |
745 | 745 | ||
746 | |||
747 | Bug{ | ||
748 | what = [[rawset/rawget do not ignore extra arguments]], | ||
749 | |||
750 | report = [[Romulo Bahiense, 11/03/2005]], | ||
751 | |||
752 | example = [[ | ||
753 | a = {} | ||
754 | rawset(a, 1, 2, 3) | ||
755 | print(a[1], a[2]) -- should be 2 and nil | ||
756 | ]], | ||
757 | |||
758 | patch = [[ | ||
759 | * lbaselib.c: | ||
760 | 175a176 | ||
761 | > lua_settop(L, 2); | ||
762 | 183a185 | ||
763 | > lua_settop(L, 3); | ||
764 | ]], | ||
765 | } | ||
766 | |||