summaryrefslogtreecommitdiff
path: root/Lisp/init.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2008-02-02 19:24:57 +0100
committerMatthias Benkard <code@mail.matthias.benkard.de>2008-02-02 19:24:57 +0100
commitd98b6223c0b5c67d0ca6a6577c578d5e35438918 (patch)
treeee7129fe319fd0aa1edb617278c4e789bfffa68c /Lisp/init.lisp
parenta115ef0d3cfab649b0bb74799eba6896e6b44f21 (diff)
Fix an undefined variable warning.
darcs-hash:424aafab701bb0e18f6af709d15c7ef2250303cc
Diffstat (limited to 'Lisp/init.lisp')
-rw-r--r--Lisp/init.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lisp/init.lisp b/Lisp/init.lisp
index ff9b1c6..91f24e9 100644
--- a/Lisp/init.lisp
+++ b/Lisp/init.lisp
@@ -31,7 +31,7 @@
(defconstant +no+ (objcl-get-no)))
(unless (boundp '+runtime-type+)
(defconstant +runtime-type+ (runtime-type)))
- (pushnew (case +runtime-type+
+ (pushnew (case (runtime-type)
((:gnu) 'objcl-features:gnu-runtime)
((:next) 'objcl-features:next-runtime))
*features*))