From 0e91ba62803a0a807dc954ba3db0634bd32d6f39 Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Sat, 7 Dec 2002 16:54:54 +0000
Subject: [PATCH] o A hack to make (subtypep 'keyword 'symbol) produce the
 right answer,   by explicitly checking for this case. o In member
 :complex-subtypep-arg2, handle the case of the second   being of type NULL. 
 This makes (subtypep 'atom 'list) work.

All the type stuff needs more work.  May use some ideas from SBCL?
---
 code/type.lisp | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/code/type.lisp b/code/type.lisp
index 3acc31c61..45022470d 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.47 2002/12/04 17:25:55 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.48 2002/12/07 16:54:54 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1060,6 +1060,13 @@
 			       :list-first t)
 		  (values t t)
 		  (values nil nil))))
+	   ((and (consp hairy-spec)
+		 (equal hairy-spec '(satisfies keywordp))
+		 (type= type2 (specifier-type 'symbol)))
+	    ;; A gross hack to make (subtypep 'keyword 'symbol) work.
+	    ;; Perhaps we should think about implementing
+	    ;; intersection-type that SBCL uses for these kinds of things.
+	    (values t t))
 	   ((and (consp hairy-spec) (eq (car hairy-spec) 'not))
 	    ;; You may not believe this. I couldn't either. But then I
 	    ;; sat down and drew lots of Venn diagrams. Comments
@@ -2096,6 +2103,10 @@
 ;;;
 (define-type-method (member :complex-subtypep-arg2) (type1 type2)
   (cond ((not (type-enumerable type1)) (values nil t))
+	((type= type2 (specifier-type 'null))
+	 ;; Nothing is a subtype of NULL, except NULL, which is
+	 ;; handled elsewhere.
+	 (values nil t))
 	((types-intersect type1 type2) (values nil nil))
 	(t
 	 (values nil t))))
-- 
GitLab