diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-27 17:11:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-27 17:11:36 -0200 |
commit | 8622dc18bfa9da14136763e9538222fdec31a79a (patch) | |
tree | 3e554773c46c51d5197c3318069043b79ff3362e /bugs | |
parent | d22e2644ddd6535d803ab35bd9ce2e3a5901d2e7 (diff) | |
download | lua-8622dc18bfa9da14136763e9538222fdec31a79a.tar.gz lua-8622dc18bfa9da14136763e9538222fdec31a79a.tar.bz2 lua-8622dc18bfa9da14136763e9538222fdec31a79a.zip |
bug: format size limits with little problems
Diffstat (limited to '')
-rw-r--r-- | bugs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -18,3 +18,9 @@ Thu Jan 15 14:34:58 EDT 1998 | |||
18 | ** llex.c | 18 | ** llex.c |
19 | Mon Jan 19 18:17:18 EDT 1998 | 19 | Mon Jan 19 18:17:18 EDT 1998 |
20 | >> wrong line number (+1) in error report when file starts with "#..." | 20 | >> wrong line number (+1) in error report when file starts with "#..." |
21 | |||
22 | ** lstrlib.c | ||
23 | Tue Jan 27 15:27:49 EDT 1998 | ||
24 | >> formats like "%020d" were considered too big (3 algarithms); moreover, | ||
25 | >> some sistems limit printf to at most 500 chars, so we can limit sizes | ||
26 | >> to 2 digits (99). | ||