aboutsummaryrefslogtreecommitdiff
path: root/src/interp/nrunfast.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-05-05 02:06:21 +0000
committerdos-reis <gdr@axiomatics.org>2010-05-05 02:06:21 +0000
commitaf88601ee70f6d03a98edb0374d682ce19343293 (patch)
treec21f9dfeff2e62e7def5a57abac3b141736dbda2 /src/interp/nrunfast.boot
parent5768bef1b2b7cd3fd38733a26a33ec2f0d8e6c01 (diff)
downloadopen-axiom-af88601ee70f6d03a98edb0374d682ce19343293.tar.gz
* interp/compiler.boot: Miscellaneous cleanup.
* interp/g-opt.boot: Likewise. * interp/functor.boot: Likewise. * interp/nrunfast.boot: Likewise. * interp/wi2.boot: Likewise.
Diffstat (limited to 'src/interp/nrunfast.boot')
-rw-r--r--src/interp/nrunfast.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/nrunfast.boot b/src/interp/nrunfast.boot
index 7f9e5266..baf3c218 100644
--- a/src/interp/nrunfast.boot
+++ b/src/interp/nrunfast.boot
@@ -478,7 +478,7 @@ lazyMatch(source,lazyt,dollar,domain) ==
STRINGP source and lazyt is ['QUOTE,=source] => true
NUMBERP source =>
lazyt is ['_#, slotNum] => source = #(domain.slotNum)
- lazyt is ['call,'LENGTH, slotNum] => source = #(domain.slotNum)
+ lazyt is ["call",'LENGTH, slotNum] => source = #(domain.slotNum)
nil
-- A hideous hack on the same lines as the previous four lines JHD/MCD