summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--regex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/regex.c b/regex.c
index 0c81c262..680224e6 100644
--- a/regex.c
+++ b/regex.c
@@ -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)
{