aboutsummaryrefslogtreecommitdiff
path: root/bugs
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-08-18 11:40:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-08-18 11:40:51 -0300
commit2a03170ebd096288c833e034000dc177784f2040 (patch)
treeb2d407c549496097e8e8161c9d47aaa126509a42 /bugs
parent05f55cc062739f0a0765882904b9f30d7073ef85 (diff)
downloadlua-2a03170ebd096288c833e034000dc177784f2040.tar.gz
lua-2a03170ebd096288c833e034000dc177784f2040.tar.bz2
lua-2a03170ebd096288c833e034000dc177784f2040.zip
random(0) and random(x,0) are wrong (0 is read as no argument!).
Diffstat (limited to 'bugs')
-rw-r--r--bugs8
1 files changed, 8 insertions, 0 deletions
diff --git a/bugs b/bugs
index cf25945d..7fea0b7e 100644
--- a/bugs
+++ b/bugs
@@ -102,3 +102,11 @@ Wed Jun 16 10:32:46 EST 1999
102the number of returns of a function. 102the number of returns of a function.
103(since 3.1) 103(since 3.1)
104 104
105
106
107--- Version 3.2
108
109** lmathlib.c
110Wed Aug 18 11:28:38 EST 1999
111>> random(0) and random(x,0) are wrong (0 is read as no argument!).
112(by Dave Bollinger; since 3.1)