X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fpackage.lisp;h=8af6ad8e068aa0d8907b0a5510b57ece8b4c30b4;hb=90ca09b75fbc3b63b2f7d09c67b04b866dd783f6;hp=276633d96238d24e87af248847d0dde9105d323f;hpb=a158430a67a8df5a86fe834fc7427bcd256c7cb0;p=sbcl.git diff --git a/src/code/package.lisp b/src/code/package.lisp index 276633d..8af6ad8 100644 --- a/src/code/package.lisp +++ b/src/code/package.lisp @@ -35,10 +35,10 @@ (sb!xc:defstruct (package-hashtable (:constructor %make-package-hashtable ()) (:copier nil)) ;; The g-vector of symbols. - ;; FIXME: could just be type SIMPLE-VECTOR, with REQUIRED-ARGUMENT + ;; FIXME: could just be type SIMPLE-VECTOR, with (MISSING-ARG) default (table nil :type (or simple-vector null)) ;; The i-vector of pname hash values. - ;; FIXME: could just be type HASH-VECTOR, with REQUIRED-ARGUMENT + ;; FIXME: could just be type HASH-VECTOR, with (MISSING-ARG) default (hash nil :type (or hash-vector null)) ;; The total number of entries allowed before resizing. ;; @@ -93,8 +93,8 @@ ;; packages that use this package (%used-by-list () :type list) ;; PACKAGE-HASHTABLEs of internal & external symbols - (internal-symbols (required-argument) :type package-hashtable) - (external-symbols (required-argument) :type package-hashtable) + (internal-symbols (missing-arg) :type package-hashtable) + (external-symbols (missing-arg) :type package-hashtable) ;; shadowing symbols (%shadowing-symbols () :type list) ;; documentation string for this package