summaryrefslogtreecommitdiffstats
path: root/regex.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2010-01-14 12:55:03 -0800
committerKaz Kylheku <kaz@kylheku.com>2010-01-14 12:55:03 -0800
commitc0e5177880892c9ef93ec8e1248742a4af522c48 (patch)
tree6f83f1fe975793ac9a12c2562d6c77684ef99e40 /regex.c
parentf50d67df2057c2cd1d26668f47bc604338ce33f0 (diff)
downloadtxr-c0e5177880892c9ef93ec8e1248742a4af522c48.tar.gz
txr-c0e5177880892c9ef93ec8e1248742a4af522c48.tar.bz2
txr-c0e5177880892c9ef93ec8e1248742a4af522c48.zip
* regex.c (reg_derivative): Bugfix: remove invalid
algebraic reductions in the derivative for the operator.
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/regex.c b/regex.c
index a45339d5..5e5fd66f 100644
--- a/regex.c
+++ b/regex.c
@@ -1279,15 +1279,7 @@ static val reg_derivative(val exp, val ch)
return cons(sym, cons(reg_derivative(first(args), ch), nil));
} else if (sym == or_s) {
val d_arg1 = reg_derivative(first(args), ch);
- val d_arg2 = nil;
-
- if (d_arg1 == nil)
- return nil;
-
- d_arg2 = reg_derivative(second(args), ch);
-
- if (d_arg2 == nil)
- return nil;
+ val d_arg2 = reg_derivative(second(args), ch);
if (d_arg1 == t)
return d_arg2;