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

In NOTE-FUNCTION-USE, make allowp be T-or-NIL, instead of a random

continuation.
parent 3aaacb5e
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/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 @@ ...@@ -386,9 +386,9 @@
(types (approximate-function-type-types type)) (types (approximate-function-type-types type))
(args (combination-args call)) (args (combination-args call))
(nargs (length args)) (nargs (length args))
(allowp (find-if #'(lambda (x) (allowp (some #'(lambda (x)
(and (constant-continuation-p x) (and (constant-continuation-p x)
(eq (continuation-value x) :allow-other-keys))) (eq (continuation-value x) :allow-other-keys)))
args))) args)))
(setf (approximate-function-type-min-args type) (setf (approximate-function-type-min-args 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