From cbb2cdd7082d8f331c78c511a3ebc9a64ebb3387 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sun, 14 Feb 1993 12:27:15 +0000 Subject: [PATCH] Oops... gotta return second value T in named-type =. --- code/type.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/type.lisp b/code/type.lisp index dc1ea02e4..8cdd30bff 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.3 1993/02/10 23:41:49 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.4 1993/02/14 12:27:15 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -873,7 +873,7 @@ (frob t *universal-type*))) (define-type-method (named :simple-=) (type1 type2) - (eq type1 type2)) + (values (eq type1 type2) t)) (define-type-method (named :simple-subtypep) (type1 type2) (values (or (eq type1 *empty-type*) (eq type2 *wild-type*)) t)) -- GitLab