aboutsummaryrefslogtreecommitdiff
path: root/src/boot/ast.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/ast.boot')
-rw-r--r--src/boot/ast.boot5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/boot/ast.boot b/src/boot/ast.boot
index ed2ff3bc..9e1882dd 100644
--- a/src/boot/ast.boot
+++ b/src/boot/ast.boot
@@ -640,10 +640,11 @@ bfISReverse(x,a) ==
bfIS1(lhs,rhs) ==
rhs = nil => ['NULL,lhs]
string? rhs => ['EQ,lhs,['QUOTE,INTERN rhs]]
- NUMBERP rhs => ["EQUAL",lhs,rhs]
+ integer? rhs => ['EQL,lhs,rhs]
atom rhs => ['PROGN,bfLetForm(rhs,lhs),'T]
rhs is ['QUOTE,a] =>
- IDENTP a => ['EQ,lhs,rhs]
+ symbol? a => ['EQ,lhs,rhs]
+ string? a => bfAND [['STRINGP,lhs],["STRING=",lhs,a]]
["EQUAL",lhs,rhs]
rhs is ['L%T,c,d] =>
l := bfLET(c,lhs)