aboutsummaryrefslogtreecommitdiff
path: root/src/boot/strap/ast.clisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-06-20 18:27:23 +0000
committerdos-reis <gdr@axiomatics.org>2013-06-20 18:27:23 +0000
commit22f59081b0bafbd71233584e1f6bc99e3ec4cf59 (patch)
tree04a87ad92e0ac74722c28a2ef93313eaca3657b3 /src/boot/strap/ast.clisp
parent1102a65aec0ee0acf7f93ef3c1d780399ac479b7 (diff)
downloadopen-axiom-22f59081b0bafbd71233584e1f6bc99e3ec4cf59.tar.gz
Tidy codegen for Boot inerts.
Diffstat (limited to 'src/boot/strap/ast.clisp')
-rw-r--r--src/boot/strap/ast.clisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/strap/ast.clisp b/src/boot/strap/ast.clisp
index 3fca935f..2b71acb9 100644
--- a/src/boot/strap/ast.clisp
+++ b/src/boot/strap/ast.clisp
@@ -1223,9 +1223,9 @@
(DEFUN |bfKeyArg| (|k| |x|) (LIST '|%Key| |k| |x|))
-(DEFUN |bfInert| (|x|) (INTERN (STRING-UPCASE |x|) "KEYWORD"))
+(DEFUN |bfInert| (|x|) (INTERN |x| "KEYWORD"))
-(DEFUN |lispKey| (|k|) (|bfInert| (SYMBOL-NAME |k|)))
+(DEFUN |lispKey| (|k|) (|bfInert| (STRING-UPCASE (SYMBOL-NAME |k|))))
(DEFUN |bfExpandKeys| (|l|)
(LET* (|x| |ISTMP#2| |k| |ISTMP#1| |a| |args|)