From eabb74c961794226e5bcdfbff7585c61c4728ece Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 20 Dec 1991 02:07:12 +0000 Subject: [PATCH] As a temporary hack until we fix purify to know what structures are R/O, added a VALUE-CELL in the SEARCH-LIST-EXPANSIONS slot. --- code/pathname.lisp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/pathname.lisp b/code/pathname.lisp index e185147f6..f8c4eecdf 100644 --- a/code/pathname.lisp +++ b/code/pathname.lisp @@ -6,7 +6,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.3 1991/12/18 22:35:03 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.4 1991/12/20 02:07:12 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -838,7 +838,13 @@ ;; ;; The list of expansions for this search-list. Each expansion is the list ;; of directory components to use in place of this search-list. - (expansions nil :type list)) + (%expansions (%primitive c:make-value-cell nil))); :type list)) + +(defun search-list-expansions (x) + (%primitive c:value-cell-ref (search-list-%expansions x))) + +(defun (setf search-list-expansions) (val x) + (%primitive c:value-cell-set (search-list-%expansions x) val)) (defun %print-search-list (sl stream depth) (declare (ignore depth)) -- GitLab