diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-16 05:09:23 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-16 05:09:23 +0300 |
commit | 9a5ad7ae3c0bb78eebdf18ede5521e2cd14f111c (patch) | |
tree | 3878aff27c580186ae22b5daee3f890f8f638564 | |
parent | 409702f929f765cd7ac7b959633ec4c694e493de (diff) | |
download | egawk-9a5ad7ae3c0bb78eebdf18ede5521e2cd14f111c.tar.gz egawk-9a5ad7ae3c0bb78eebdf18ede5521e2cd14f111c.tar.bz2 egawk-9a5ad7ae3c0bb78eebdf18ede5521e2cd14f111c.zip |
Add a comment in re.c:resetup.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | re.c | 7 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2013-10-16 Arnold D. Robbins <arnold@skeeve.com> + + * re.c (resetup): Add a comment about the joy of syntax bits. + 2013-10-10 Arnold D. Robbins <arnold@skeeve.com> * dfa.c (lex): Sync with GNU grep. Handle multibyte \s and \S. @@ -396,6 +396,13 @@ re_update(NODE *t) void resetup() { + /* + * Syntax bits: _that_ is yet another mind trip. Recreational drugs + * are helpful for recovering from the experience. + * + * Aharon Robbins <arnold@skeeve.com> + * Sun, 21 Oct 2007 23:55:33 +0200 + */ if (do_posix) syn = RE_SYNTAX_POSIX_AWK; /* strict POSIX re's */ else if (do_traditional) |