X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdefbangmacro.lisp;h=c2572dc08a04389acfec613c9fb5f88f4d5f3b96;hb=b4831dc945c0754b3ba77881e67c8ea4d0a3d905;hp=7e7dba306ec6f7fdad936b615c303ae3c12324b1;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/code/defbangmacro.lisp b/src/code/defbangmacro.lisp index 7e7dba3..c2572dc 100644 --- a/src/code/defbangmacro.lisp +++ b/src/code/defbangmacro.lisp @@ -22,8 +22,8 @@ ;; a description of the DEF!MACRO call to be stored until we get enough ;; of the system running to finish processing it (defstruct delayed-def!macro - (args (required-argument) :type cons) - (package *package* :type package)) + (args (missing-arg) :type cons) + (package (sane-package) :type package)) ;; a list of DELAYED-DEF!MACROs stored until we get DEF!MACRO working fully ;; so that we can apply it to them. After DEF!MACRO is made to work, this ;; list is processed, and then should no longer be used; it's made unbound in