From 6b9d25234851cb04f339df5c2950153fe049ed49 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 15 May 1992 17:39:00 +0000
Subject: [PATCH] Don't special case IN-PACKAGE, because it's now a macro. 
 Instead, special case OLD-IN-PACKAGE and %IN-PACKAGE.  The IN-PACKAGE macro
 looks at its arguments and picks the correct one to expand into.

---
 compiler/main.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/main.lisp b/compiler/main.lisp
index a8be1bfc9..41f466e61 100644
--- a/compiler/main.lisp
+++ b/compiler/main.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.58 1992/04/21 04:13:53 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.59 1992/05/15 17:39:00 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -987,10 +987,10 @@
       (if (atom form)
 	  (convert-and-maybe-compile form path)
 	  (case (car form)
-	    ((make-package in-package shadow shadowing-import export
+	    ((make-package old-in-package shadow shadowing-import export
 			   unexport use-package unuse-package import)
 	     (process-cold-load-form form path t))
-	    ((error cerror break signal)
+	    ((error cerror break signal %in-package)
 	     (process-cold-load-form form path nil))
 	    ((eval-when)
 	     (unless (>= (length form) 2)
-- 
GitLab