diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-09-18 17:02:13 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2007-09-18 17:02:13 +0200 |
commit | 1498179f79391ee8863ac2b9fcb6c3299417684e (patch) | |
tree | 6469df76616afa06d270cb56086c7d0a2a83a25e /Lisp | |
parent | 50025d579200f44fa24701bfbb4199f652c1fe52 (diff) |
Make +NIL+ a runtime-only constant.
darcs-hash:ea2b9fa98340a19c90f9e85f4e75cae52b6edd77
Diffstat (limited to 'Lisp')
-rw-r--r-- | Lisp/method-invocation.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lisp/method-invocation.lisp b/Lisp/method-invocation.lisp index 6176553..9f9e056 100644 --- a/Lisp/method-invocation.lisp +++ b/Lisp/method-invocation.lisp @@ -1,7 +1,7 @@ (in-package #:mulk.objective-cl) -(eval-when (:compile-toplevel :load-toplevel :execute) +(eval-when (:execute) (unless (boundp '+nil+) (defconstant +nil+ (make-instance 'id :pointer (objcl-get-nil))))) |