From 1505ac1e1ca9fae4be0482aeec79f8dec20567cb Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Mon, 9 May 2005 15:56:03 +0000
Subject: [PATCH] Complex arrays of any type, not just complex arrays of type
 :maybe, can intersect any array,

Fixes ansi-test misc.537.
---
 code/type.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/code/type.lisp b/code/type.lisp
index 06141590a..2d1f221fe 100644
--- a/code/type.lisp
+++ b/code/type.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/type.lisp,v 1.70 2005/04/24 02:38:34 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.71 2005/05/09 15:56:03 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -2741,8 +2741,8 @@
 				dims1 dims2))))
 	   (values nil t))
 	  ;; See whether complexpness is compatible.
-	  ((not (or (eq complexp1 :maybe)
-		    (eq complexp2 :maybe)
+	  ((not (or complexp1
+		    complexp2
 		    (eq complexp1 complexp2)))
 	   (values nil t))
 	  ;; Old comment:
-- 
GitLab