aboutsummaryrefslogtreecommitdiff
path: root/bugs
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-18 11:26:43 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-12-18 11:26:43 -0200
commit0c9080c7a9c2e0f9ee39a887bbde5385160b9747 (patch)
tree228c4571278479593d0b34f01495504feb395a0c /bugs
parentb8fcb7b151a2eba126e042634d23834f4653f208 (diff)
downloadlua-0c9080c7a9c2e0f9ee39a887bbde5385160b9747.tar.gz
lua-0c9080c7a9c2e0f9ee39a887bbde5385160b9747.tar.bz2
lua-0c9080c7a9c2e0f9ee39a887bbde5385160b9747.zip
"tonumber" goes crazy with negative numbers in other bases (not 10),
because "strtol" returns long, not unsigned long.
Diffstat (limited to 'bugs')
-rw-r--r--bugs6
1 files changed, 6 insertions, 0 deletions
diff --git a/bugs b/bugs
index bd5806e5..c07d8a66 100644
--- a/bugs
+++ b/bugs
@@ -52,3 +52,9 @@ of view) when functions have upvalues.
52** lstrlib.c 52** lstrlib.c
53Tue Nov 10 17:29:36 EDT 1998 53Tue Nov 10 17:29:36 EDT 1998
54>> gsub/strfind do not check whether captures are properly finished. 54>> gsub/strfind do not check whether captures are properly finished.
55
56** lbuiltin.c
57Fri Dec 18 11:22:55 EDT 1998
58>> "tonumber" goes crazy with negative numbers in other bases (not 10),
59because "strtol" returns long, not unsigned long.
60