summaryrefslogtreecommitdiff
path: root/bugs
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-06-16 10:35:01 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-06-16 10:35:01 -0300
commitd4dce57f5ca64c65c7c49eac683b8f807e8dc02d (patch)
tree59cd92fbd9687d00aa8fd8f94ece538c8d7c6c35 /bugs
parent5c19ed2a13af8cdf364867ea66f9827bc139d06b (diff)
downloadlua-d4dce57f5ca64c65c7c49eac683b8f807e8dc02d.tar.gz
lua-d4dce57f5ca64c65c7c49eac683b8f807e8dc02d.tar.bz2
lua-d4dce57f5ca64c65c7c49eac683b8f807e8dc02d.zip
cannot assign to unlimited variables, because it causes overflow in
the number of returns of a function.
Diffstat (limited to 'bugs')
-rw-r--r--bugs10
1 files changed, 8 insertions, 2 deletions
diff --git a/bugs b/bugs
index e6cb6dac..cf25945d 100644
--- a/bugs
+++ b/bugs
@@ -88,11 +88,17 @@ Thu Mar 4 11:49:37 EST 1999
88** lstrlib.c 88** lstrlib.c
89Fri Apr 30 11:10:20 EST 1999 89Fri Apr 30 11:10:20 EST 1999
90>> '$' at end of pattern was matching regular '$', too. 90>> '$' at end of pattern was matching regular '$', too.
91(by anna) 91(by anna; since 2.5)
92 92
93** lbuiltin.c 93** lbuiltin.c
94Fri May 21 17:15:11 EST 1999 94Fri May 21 17:15:11 EST 1999
95>> foreach, foreachi, foreachvar points to function in stack when stack 95>> foreach, foreachi, foreachvar points to function in stack when stack
96can be reallocated. 96can be reallocated.
97(by tomas) 97(by tomas; since 3.2 beta)
98
99** lparser.c
100Wed Jun 16 10:32:46 EST 1999
101>> cannot assign to unlimited variables, because it causes overflow in
102the number of returns of a function.
103(since 3.1)
98 104