From 3e3d94e874d0e280e0e6402599fb294b6c6b3c36 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 25 Apr 1990 10:19:24 +0000 Subject: [PATCH] Changed to OR in the result of STRUCTURE-PREDICATE to be an IF, since that is optimized more easily. --- code/defstruct.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/defstruct.lisp b/code/defstruct.lisp index 7206cbd7e..b8ed70a14 100644 --- a/code/defstruct.lisp +++ b/code/defstruct.lisp @@ -567,7 +567,8 @@ (let ((def (info type structure-info type))) (if (and def (eq (dd-type def) 'structure) (dd-predicate def)) `(and (structurep ,object) - (or (eq (%primitive header-ref ,object 0) ',type) + (if (eq (%primitive header-ref ,object 0) ',type) + t (,(dd-predicate def) ,object))) `(lisp::structure-typep ,object ',type)))) -- GitLab