diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2010-01-26 15:57:54 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2010-01-26 15:57:54 -0800 |
commit | 1b2a7dc06a92c0098ecf279ec8e645b64dffdc36 (patch) | |
tree | 11a9a341407f2cba4354677d94476c0767190478 | |
parent | a0d9dcfe97e824e25174a3bfc9116e505eac0a51 (diff) | |
download | txr-1b2a7dc06a92c0098ecf279ec8e645b64dffdc36.tar.gz txr-1b2a7dc06a92c0098ecf279ec8e645b64dffdc36.tar.bz2 txr-1b2a7dc06a92c0098ecf279ec8e645b64dffdc36.zip |
Fix inaccurate comment.
-rw-r--r-- | regex.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1129,10 +1129,10 @@ static struct cobj_ops regex_obj_ops = { static val reg_nullable(val); /* - * ``Compile'' raw regular expression to a form that is - * easier to simulate by the derivative method. - * The only thing we currently do here is replace character set regexps with - * character set objects. + * ``Compile'' raw regular expression to a form that is easier to simulate by + * the derivative method. Here we currently replace character set regexps with + * character set objects, and also transform the nongreedy syntax into the more + * complex expression it represents. */ static val dv_compile_regex(val exp) { |