diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-03-09 15:28:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-03-09 15:28:08 -0300 |
commit | be6d215f674f3d148d3f80a0553e8b2aa6da51d7 (patch) | |
tree | 6ff346eb5c1f2858f4cf6d41a79289bfbf53b545 /bugs | |
parent | e74817f8aa1f81224aeed40f8aff8d8f75fba9d9 (diff) | |
download | lua-be6d215f674f3d148d3f80a0553e8b2aa6da51d7.tar.gz lua-be6d215f674f3d148d3f80a0553e8b2aa6da51d7.tar.bz2 lua-be6d215f674f3d148d3f80a0553e8b2aa6da51d7.zip |
BUG: gsub('a', '(b?)%1*' ...) loops (because the capture is empty).
Diffstat (limited to 'bugs')
-rw-r--r-- | bugs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -33,3 +33,7 @@ Tue Jan 27 17:12:36 EDT 1998 | |||
33 | Wed Jan 28 14:48:12 EDT 1998 | 33 | Wed Jan 28 14:48:12 EDT 1998 |
34 | >> tables can become full of "emptys" slots, and keep growing without limits. | 34 | >> tables can become full of "emptys" slots, and keep growing without limits. |
35 | 35 | ||
36 | ** lstrlib.c | ||
37 | Mon Mar 9 15:26:09 EST 1998 | ||
38 | >> gsub('a', '(b?)%1*' ...) loops (because the capture is empty). | ||
39 | |||