From a4093869b1c779590402f306360de6cdd8d18971 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 25 Aug 1990 18:46:40 +0000 Subject: [PATCH] Changed HAIRY-TYPE-CHECK-TEMPLATE to return check-function for any function type. --- compiler/generic/vm-type.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/generic/vm-type.lisp b/compiler/generic/vm-type.lisp index 17ee83a70..239497d37 100644 --- a/compiler/generic/vm-type.lisp +++ b/compiler/generic/vm-type.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.15 1990/06/16 15:35:59 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.16 1990/08/25 18:46:40 wlott Exp $ ;;; ;;; This file contains implementation-dependent parts of the type support ;;; code. This is stuff which deals with the mapping from types defined in @@ -186,5 +186,7 @@ (if (type= type (specifier-type '(or function symbol))) 'c::check-function-or-symbol nil)) + (function-type + 'c::check-function) (t nil))) -- GitLab