Skip to content
Snippets Groups Projects
Commit 0615845c authored by wlott's avatar wlott
Browse files

Fixed %%typep to call specifier-type before calling itself while processing

hairy types, 'cause it can only take ctype structures, not random type
specifiers.
parent a5e60e27
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pred.lisp,v 1.13 1990/10/16 19:54:05 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pred.lisp,v 1.14 1990/10/25 23:44:55 wlott Exp $
;;; ;;;
;;; Predicate functions for CMU Common Lisp. ;;; Predicate functions for CMU Common Lisp.
;;; ;;;
...@@ -283,12 +283,12 @@ ...@@ -283,12 +283,12 @@
(and (and
(or (atom hairy-spec) (or (atom hairy-spec)
(dolist (spec (cdr hairy-spec)) (dolist (spec (cdr hairy-spec))
(unless (%%typep object spec) (unless (%%typep object (specifier-type spec))
(return nil))))) (return nil)))))
(not (not
(unless (and (listp hairy-spec) (= (length hairy-spec) 2)) (unless (and (listp hairy-spec) (= (length hairy-spec) 2))
(error "Invalid type specifier: ~S" hairy-spec)) (error "Invalid type specifier: ~S" hairy-spec))
(not (%%typep object (cadr hairy-spec)))) (not (%%typep object (cadr (specifier-type hairy-spec)))))
(satisfies (satisfies
(unless (and (listp hairy-spec) (= (length hairy-spec) 2)) (unless (and (listp hairy-spec) (= (length hairy-spec) 2))
(error "Invalid type specifier: ~S" hairy-spec)) (error "Invalid type specifier: ~S" hairy-spec))
......
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