From cc2c68e48bedcd3563224b967e22d8f4e6f4671c Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Wed, 30 Nov 2011 12:05:25 +0200 Subject: [PATCH] no need for BOOT-MAKE-WRAPPER on target Rename it !BOOT-MAKE-WRAPPER. --- src/pcl/boot.lisp | 4 ++-- src/pcl/braid.lisp | 4 ++-- src/pcl/wrapper.lisp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pcl/boot.lisp b/src/pcl/boot.lisp index 33b76a3..7e58e0a 100644 --- a/src/pcl/boot.lisp +++ b/src/pcl/boot.lisp @@ -1740,8 +1740,8 @@ bootstrapping. :format-arguments (list fun-name))) (defvar *sgf-wrapper* - (boot-make-wrapper (early-class-size 'standard-generic-function) - 'standard-generic-function)) + (!boot-make-wrapper (early-class-size 'standard-generic-function) + 'standard-generic-function)) (defvar *sgf-slots-init* (mapcar (lambda (canonical-slot) diff --git a/src/pcl/braid.lisp b/src/pcl/braid.lisp index f4b6377..ce6bbc1 100644 --- a/src/pcl/braid.lisp +++ b/src/pcl/braid.lisp @@ -118,7 +118,7 @@ (let ((wr (format-symbol *pcl-package* "~A-WRAPPER" class))) `(setf ,wr ,(if (eq class 'standard-generic-function) '*sgf-wrapper* - `(boot-make-wrapper + `(!boot-make-wrapper (early-class-size ',class) ',class)) ,class (allocate-standard-instance @@ -199,7 +199,7 @@ ((eq class standard-generic-function) standard-generic-function-wrapper) (t - (boot-make-wrapper (length slots) name)))) + (!boot-make-wrapper (length slots) name)))) (proto nil)) (when (eq name t) (setq *the-wrapper-of-t* wrapper)) (set (make-class-symbol name) class) diff --git a/src/pcl/wrapper.lisp b/src/pcl/wrapper.lisp index ee29b2b..e5f086b 100644 --- a/src/pcl/wrapper.lisp +++ b/src/pcl/wrapper.lisp @@ -34,7 +34,7 @@ ;;; This is called in BRAID when we are making wrappers for classes ;;; whose slots are not initialized yet, and which may be built-in ;;; classes. We pass in the class name in addition to the class. -(defun boot-make-wrapper (length name &optional class) +(defun !boot-make-wrapper (length name &optional class) (let ((found (find-classoid name nil))) (cond (found -- 1.7.10.4