From 4ba7029a8899834a4b34819421c54805ef180d37 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Tue, 31 Aug 1993 09:01:07 +0000
Subject: [PATCH] Only signal *parse-unknown-type* when
 *type-system-initialized*

---
 code/type.lisp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/code/type.lisp b/code/type.lisp
index a0e5dbd33..c4cbde5ae 100644
--- a/code/type.lisp
+++ b/code/type.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.14 1993/08/25 01:15:35 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.15 1993/08/31 09:01:07 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -846,7 +846,8 @@
 	    (cond (fun (funcall fun lspec))
 		  ((or (and (consp spec) (symbolp (car spec)))
 		       (symbolp spec))
-		   (signal 'parse-unknown-type :specifier spec)
+		   (when *type-system-initialized*
+		     (signal 'parse-unknown-type :specifier spec))
 		   ;;
 		   ;; Inhibit caching...
 		   (return-from values-specifier-type
-- 
GitLab