diff options
Diffstat (limited to 'Lisp')
-rw-r--r-- | Lisp/data-types.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lisp/data-types.lisp b/Lisp/data-types.lisp index e2a5358..d4e169e 100644 --- a/Lisp/data-types.lisp +++ b/Lisp/data-types.lisp @@ -203,7 +203,7 @@ The following calls are all equivalent: (let ((*compile-verbose* nil)) (let ((lambda-form `(lambda (receiver &rest args) (apply #'invoke-by-name receiver ,selector args)))) - (compile lambda-form nil)))) + (compile nil lambda-form)))) (defmethod initialize-instance :after ((selector selector) |