X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fdeftype.lisp;h=e41c6fc659c07edc1dc8794d4d31d019c54c9f62;hb=bc46c8bcdd6ac8918df8ea9e9db49808e4924fcf;hp=fe56d65b396f49b15d9a38a8e6c3eae27b403b4a;hpb=c9c0e648c51317ff374851c4fcc740a15d37acae;p=sbcl.git diff --git a/src/compiler/deftype.lisp b/src/compiler/deftype.lisp index fe56d65..e41c6fc 100644 --- a/src/compiler/deftype.lisp +++ b/src/compiler/deftype.lisp @@ -9,9 +9,6 @@ (in-package "SB!IMPL") -(file-comment - "$Header$") - (def!macro sb!xc:deftype (name arglist &body body) #!+sb-doc "Define a new type, with syntax like DEFMACRO." @@ -22,7 +19,7 @@ (parse-defmacro arglist whole body name 'deftype :default-default ''*) `(eval-when (:compile-toplevel :load-toplevel :execute) (%compiler-deftype ',name - #'(lambda (,whole) - ,@local-decs - (block ,name ,body)) + (lambda (,whole) + ,@local-decs + (block ,name ,body)) ,@(when doc `(,doc)))))))