diff --git a/code/exports.lisp b/code/exports.lisp index 1effa826f5e287d8a2fdb8bce462d21adf532389..c5cfb3e8e70c033dc6858df564ae31e60d5cad7b 100644 --- a/code/exports.lisp +++ b/code/exports.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.154 1998/05/09 22:13:42 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.155 1998/05/27 03:32:59 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -13,8 +13,11 @@ ;;; (in-package "LISP") -(unless (find-package "PCL") - (make-package "PCL")) + +(if (find-package "PCL") + (rename-package "PCL" "PCL" 'nil) + (make-package "PCL" :nicknames 'nil :use nil)) +(shadow 'class "PCL") (if (find-package "C-CALL") (rename-package "C-CALL" "C-CALL" 'nil)