Fix make-array transforms.
[sbcl.git] / src / code / package.lisp
index 4a9f7ad..9e9dd3e 100644 (file)
   #!+sb-package-locks
   (%implementation-packages nil :type list)
   ;; Definition source location
-  (source-location nil :type (or null sb!c:definition-source-location)))
+  (source-location nil :type (or null sb!c:definition-source-location))
+  ;; Local package nicknames.
+  (%local-nicknames nil :type list)
+  (%locally-nicknamed-by nil :type list))
 \f
 ;;;; iteration macros
 
@@ -370,7 +373,7 @@ of :INHERITED :EXTERNAL :INTERNAL."
                                                            (setf ,',counter nil)))))))))))))
                 ,@body))))))))
 
-(defmacro-mundanely with-packages ((&key) &body forms)
+(defmacro-mundanely with-package-graph ((&key) &body forms)
   `(flet ((thunk () ,@forms))
      (declare (dynamic-extent #'thunk))
-     (call-with-packages #'thunk)))
+     (call-with-package-graph #'thunk)))