summaryrefslogtreecommitdiff
path: root/bugs
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-03-09 15:28:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-03-09 15:28:08 -0300
commitbe6d215f674f3d148d3f80a0553e8b2aa6da51d7 (patch)
tree6ff346eb5c1f2858f4cf6d41a79289bfbf53b545 /bugs
parente74817f8aa1f81224aeed40f8aff8d8f75fba9d9 (diff)
downloadlua-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--bugs4
1 files changed, 4 insertions, 0 deletions
diff --git a/bugs b/bugs
index df6a0ef9..b1bee0fc 100644
--- a/bugs
+++ b/bugs
@@ -33,3 +33,7 @@ Tue Jan 27 17:12:36 EDT 1998
33Wed Jan 28 14:48:12 EDT 1998 33Wed 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
37Mon Mar 9 15:26:09 EST 1998
38>> gsub('a', '(b?)%1*' ...) loops (because the capture is empty).
39