summaryrefslogtreecommitdiffstats
path: root/regex.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2010-01-15 16:33:51 -0800
committerKaz Kylheku <kaz@kylheku.com>2010-01-15 16:33:51 -0800
commit9d24c8a35c07201d3d947332a66cb148af4c24c9 (patch)
tree6f644109e45b68cad73ed1a8db8710c837243b0a /regex.c
parent5eab77fcd428e89303521df2830cdc0951672348 (diff)
downloadtxr-9d24c8a35c07201d3d947332a66cb148af4c24c9.tar.gz
txr-9d24c8a35c07201d3d947332a66cb148af4c24c9.tar.bz2
txr-9d24c8a35c07201d3d947332a66cb148af4c24c9.zip
Implemented non-greedy operator.
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/regex.c b/regex.c
index 61d25914..5107c5ec 100644
--- a/regex.c
+++ b/regex.c
@@ -1156,6 +1156,25 @@ static val dv_compile_regex(val exp)
val xfirst = dv_compile_regex(first(args));
val xsecond = dv_compile_regex(second(args));
return cons(sym, cons(xfirst, cons(xsecond, nil)));
+ } else if (sym == nongreedy_s) {
+ val xfirst = dv_compile_regex(first(args));
+ val xsecond = dv_compile_regex(second(args));
+ val zplus = cons(zeroplus_s, cons(xfirst, nil));
+
+ if (xsecond == nil) {
+ return zplus;
+ } else {
+ val any = list(zeroplus_s, wild_s, nao);
+
+ return list(compound_s,
+ list(and_s,
+ zplus,
+ list(compl_s,
+ list(compound_s, any, xsecond, any, nao),
+ nao),
+ nao),
+ xsecond, nao);
+ }
} else {
internal_error("bad operator in regex");
}
@@ -1348,7 +1367,7 @@ static val regex_requires_dv(val exp)
} else if (sym == or_s) {
return if2(regex_requires_dv(first(args)) ||
regex_requires_dv(second(args)), t);
- } else if (sym == and_s) {
+ } else if (sym == and_s || sym == nongreedy_s) {
return t;
} else {
internal_error("bad operator in regex");