diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-02-02 19:24:57 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-02-02 19:24:57 +0100 |
commit | d98b6223c0b5c67d0ca6a6577c578d5e35438918 (patch) | |
tree | ee7129fe319fd0aa1edb617278c4e789bfffa68c | |
parent | a115ef0d3cfab649b0bb74799eba6896e6b44f21 (diff) |
Fix an undefined variable warning.
darcs-hash:424aafab701bb0e18f6af709d15c7ef2250303cc
-rw-r--r-- | Lisp/init.lisp | 2 |
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*)) |