diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-02-03 14:42:42 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-02-03 14:42:42 -0200 |
commit | 80001ab0eb3ad95f370796b26dacfdd7e9874877 (patch) | |
tree | c6363a6e92c628474a8c45c69b0eb69e48e5ca01 /bugs | |
parent | ae29ab9858514eb264be590163c698d5172bbaa4 (diff) | |
download | lua-80001ab0eb3ad95f370796b26dacfdd7e9874877.tar.gz lua-80001ab0eb3ad95f370796b26dacfdd7e9874877.tar.bz2 lua-80001ab0eb3ad95f370796b26dacfdd7e9874877.zip |
getlocal cannot return the local itself, since lua_isstring and
lua_isnumber can modify it.
Diffstat (limited to 'bugs')
-rw-r--r-- | bugs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -61,3 +61,9 @@ because "strtol" returns long, not unsigned long. | |||
61 | ** lstrlib.c | 61 | ** lstrlib.c |
62 | Mon Jan 4 10:41:40 EDT 1999 | 62 | Mon Jan 4 10:41:40 EDT 1999 |
63 | >> "format" does not check size of format item (such as "%00000...00000d"). | 63 | >> "format" does not check size of format item (such as "%00000...00000d"). |
64 | |||
65 | ** lapi.c | ||
66 | Wed Feb 3 14:40:21 EDT 1999 | ||
67 | >> getlocal cannot return the local itself, since lua_isstring and | ||
68 | lua_isnumber can modify it. | ||
69 | |||