aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-10-11 16:39:24 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-10-11 16:39:24 +0300
commita3e187cbb5c9ef951152f18fee1d36c93e4abbe5 (patch)
tree9f351195b64fbaa4a856b18510007a6eaa897c16 /io.c
parentdd9b0921ee9a6918279b3245d4373fdd1180ee13 (diff)
downloadegawk-a3e187cbb5c9ef951152f18fee1d36c93e4abbe5.tar.gz
egawk-a3e187cbb5c9ef951152f18fee1d36c93e4abbe5.tar.bz2
egawk-a3e187cbb5c9ef951152f18fee1d36c93e4abbe5.zip
Small improvement for regexp maybe_long criteria.
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 1fb95873..2714398e 100644
--- a/io.c
+++ b/io.c
@@ -3753,7 +3753,7 @@ again:
* "abc" into the front of the next record. Ooops.
*
* The re->maybe_long member is true if the
- * regex contains one of: + * ? |. This is a very
+ * regex contains one of: + * ? | { }. This is a very
* simple heuristic, but in combination with the
* "end of match within a few bytes of end of buffer"
* check, should keep things reasonable.