Skip to content
Snippets Groups Projects
Commit 4ba7029a authored by ram's avatar ram
Browse files

Only signal *parse-unknown-type* when *type-system-initialized*

parent 678ca208
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -846,7 +846,8 @@
(cond (fun (funcall fun lspec)) (cond (fun (funcall fun lspec))
((or (and (consp spec) (symbolp (car spec))) ((or (and (consp spec) (symbolp (car spec)))
(symbolp spec)) (symbolp spec))
(signal 'parse-unknown-type :specifier spec) (when *type-system-initialized*
(signal 'parse-unknown-type :specifier spec))
;; ;;
;; Inhibit caching... ;; Inhibit caching...
(return-from values-specifier-type (return-from values-specifier-type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment