aboutsummaryrefslogtreecommitdiff
path: root/src/boot/strap/ast.clisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-05-27 06:28:15 +0000
committerdos-reis <gdr@axiomatics.org>2013-05-27 06:28:15 +0000
commite813f56af68f00663d6df03c4ed1ff6f85873716 (patch)
treed70a5e427e4de044d6446a73ce9c3fe93cbac8a7 /src/boot/strap/ast.clisp
parent7544b976d2919866e60211ded498df937650de05 (diff)
downloadopen-axiom-e813f56af68f00663d6df03c4ed1ff6f85873716.tar.gz
Rename MAKE-FULL-FILENAME to makeFullFilename.
Diffstat (limited to 'src/boot/strap/ast.clisp')
-rw-r--r--src/boot/strap/ast.clisp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/boot/strap/ast.clisp b/src/boot/strap/ast.clisp
index 94f3cce2..a51ee1c2 100644
--- a/src/boot/strap/ast.clisp
+++ b/src/boot/strap/ast.clisp
@@ -1124,6 +1124,7 @@
((|bfString?| |rhs|)
(|bfAND| (LIST (LIST 'STRINGP |lhs|) (LIST 'STRING= |lhs| |rhs|))))
((OR (|bfChar?| |rhs|) (INTEGERP |rhs|)) (LIST 'EQL |lhs| |rhs|))
+ ((KEYWORDP |rhs|) (LIST 'EQ |lhs| |rhs|))
((NOT (CONSP |rhs|)) (LIST 'PROGN (|bfLetForm| |rhs| |lhs|) 'T))
((EQ (CAR |rhs|) 'QUOTE) (SETQ |a| (CADR |rhs|))
(COND ((SYMBOLP |a|) (LIST 'EQ |lhs| |rhs|))