From e789038a7efd8f27b5bab19979986afad81bd46e Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 28 Mar 1990 14:10:05 +0000 Subject: [PATCH] Qualify check-cons, check-symbol, and check-function-or-symbol as being in the C package. --- compiler/generic/vm-type.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/generic/vm-type.lisp b/compiler/generic/vm-type.lisp index 38991ef4f..24ecec836 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.7 1990/03/27 18:54:23 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.8 1990/03/28 14:10:05 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 @@ -141,12 +141,12 @@ (typecase type (named-type (case (named-type-name type) - (cons 'check-cons) - (symbol 'check-symbol) + (cons 'c::check-cons) + (symbol 'c::check-symbol) (t nil))) (union-type (if (type= type (specifier-type '(or function symbol))) - 'check-function-or-symbol + 'c::check-function-or-symbol nil)) (t nil))) -- GitLab