X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fpackage.lisp;h=80455aceafceb2095d4bfdff1bff0405a60f11d8;hb=a2ff6543c79752bfe42578f794bda1c28167fd10;hp=59f2f24f22e51f34f7d8a5234a9c69b7f9ca7bef;hpb=ff92598854bf7cae8d57fe49cef4d9a98e1ab345;p=sbcl.git diff --git a/src/code/package.lisp b/src/code/package.lisp index 59f2f24..80455ac 100644 --- a/src/code/package.lisp +++ b/src/code/package.lisp @@ -73,7 +73,7 @@ #!+sb-doc "the standard structure for the description of a package" ;; the name of the package, or NIL for a deleted package - (%name nil :type (or simple-base-string null)) + (%name nil :type (or simple-string null)) ;; nickname strings (%nicknames () :type list) ;; packages used by this package @@ -99,7 +99,7 @@ ;; shadowing symbols (%shadowing-symbols () :type list) ;; documentation string for this package - (doc-string nil :type (or simple-base-string null)) + (doc-string nil :type (or simple-string null)) ;; package locking #!+sb-package-locks (lock nil :type boolean) @@ -290,7 +290,7 @@ (error 'simple-program-error :format-control "At least one of :INTERNAL, :EXTERNAL, or ~ - :INHERITED must be supplied.")) + :INHERITED must be supplied.")) ,(dolist (symbol symbol-types) (unless (member symbol '(:internal :external :inherited)) (error 'program-error