From b290872e5f731073fc8675e69d1500760b5c3b48 Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Tue, 13 Mar 2001 16:49:33 +0000 Subject: [PATCH] Aid removal of extraneous non-CL exports and moving of get-setf-method to extensions package. --- bootfiles/18c/boot3.lisp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bootfiles/18c/boot3.lisp diff --git a/bootfiles/18c/boot3.lisp b/bootfiles/18c/boot3.lisp new file mode 100644 index 000000000..b43203836 --- /dev/null +++ b/bootfiles/18c/boot3.lisp @@ -0,0 +1,15 @@ +;;; 3/13/01 Got rid of some symbols that didn't belong in CL package. +;;; Moved get-setf-method to extensions package since it is still used. +;;; Should be easy enough to flush later as it just calls +;;; get-setf-expansion checking for a single store value. +;;; +;;; Load this into compiler before attempting to worldcom/comcom. + +(unexport '(GET-SETF-METHOD-MULTIPLE-VALUE + LOGICAL-PATHNAME-P + DEFINE-SETF-METHOD + HASH-TABLE-WEAK-P + GET-SETF-METHOD) + :lisp) + +(load "target:code/exports.lisp") -- GitLab