diff options
Diffstat (limited to 'src/interp/wi2.boot')
-rw-r--r-- | src/interp/wi2.boot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/wi2.boot b/src/interp/wi2.boot index 3689f052..c5a6ef21 100644 --- a/src/interp/wi2.boot +++ b/src/interp/wi2.boot @@ -583,8 +583,8 @@ compMapCond''(cexpr,dc) == cexpr=true => true --cexpr = "true" => true ---------------> new <---------------------- - cexpr is [op,:l] and op in '(_and AND) => and/[compMapCond''(u,dc) for u in l] - cexpr is [op,:l] and op in '(_or OR) => or/[compMapCond''(u,dc) for u in l] + cexpr is [op,:l] and op in '(and AND) => and/[compMapCond''(u,dc) for u in l] + cexpr is [op,:l] and op in '(or OR) => or/[compMapCond''(u,dc) for u in l] ---------------> new <---------------------- cexpr is ["not",u] => not compMapCond''(u,dc) cexpr is ["has",name,cat] => (knownInfo cexpr => true; false) |