From a3287210fb51112ec27e8cca79777b31b76851d3 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 7 Jun 1991 15:04:32 +0000 Subject: [PATCH] In NOTE-FUNCTION-USE, make allowp be T-or-NIL, instead of a random continuation. --- compiler/ctype.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/ctype.lisp b/compiler/ctype.lisp index d1de1d6fa..9df0228bf 100644 --- a/compiler/ctype.lisp +++ b/compiler/ctype.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ctype.lisp,v 1.20 1991/05/21 22:29:29 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ctype.lisp,v 1.21 1991/06/07 15:04:32 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -386,9 +386,9 @@ (types (approximate-function-type-types type)) (args (combination-args call)) (nargs (length args)) - (allowp (find-if #'(lambda (x) - (and (constant-continuation-p x) - (eq (continuation-value x) :allow-other-keys))) + (allowp (some #'(lambda (x) + (and (constant-continuation-p x) + (eq (continuation-value x) :allow-other-keys))) args))) (setf (approximate-function-type-min-args type) -- GitLab