aboutsummaryrefslogtreecommitdiff
path: root/src/boot/strap
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-12-12 19:07:23 +0000
committerdos-reis <gdr@axiomatics.org>2010-12-12 19:07:23 +0000
commitf1c5b36d7eeb93b28a346101142e80d8035b072b (patch)
treecba5adb024120ffdce33ba43a5c855afc86782d9 /src/boot/strap
parent9b1dd86f0bcb9aa41ca3fded5e79a7581d127391 (diff)
downloadopen-axiom-f1c5b36d7eeb93b28a346101142e80d8035b072b.tar.gz
* boot/ast.boot (bfIS1): Tidy.
Diffstat (limited to 'src/boot/strap')
-rw-r--r--src/boot/strap/ast.clisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/boot/strap/ast.clisp b/src/boot/strap/ast.clisp
index 023496b2..a022f053 100644
--- a/src/boot/strap/ast.clisp
+++ b/src/boot/strap/ast.clisp
@@ -956,7 +956,9 @@
(RETURN
(COND
((NULL |rhs|) (LIST 'NULL |lhs|))
- ((STRINGP |rhs|) (LIST 'EQ |lhs| (LIST 'QUOTE (INTERN |rhs|))))
+ ((STRINGP |rhs|)
+ (|bfAND| (LIST (LIST 'STRINGP |lhs|)
+ (LIST 'STRING= |lhs| |rhs|))))
((INTEGERP |rhs|) (LIST 'EQL |lhs| |rhs|))
((ATOM |rhs|) (LIST 'PROGN (|bfLetForm| |rhs| |lhs|) 'T))
((AND (CONSP |rhs|) (EQ (CAR |rhs|) 'QUOTE)