From a3cff44f1ee9252ad8d0c4930b9b678254ae142e Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Tue, 13 Sep 2005 14:38:44 +0000 Subject: [PATCH] Pathnames with NIL hosts now use the host from *default-pathname-defaults* or *unix-host* to get the namestring. Previously, an error was generated. This change breaks print/read consistency for pathnames with NIL hosts. --- code/pathname.lisp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/pathname.lisp b/code/pathname.lisp index 353cb34ba..5ff0e17f5 100644 --- a/code/pathname.lisp +++ b/code/pathname.lisp @@ -4,7 +4,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.74 2005/09/12 14:38:17 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.75 2005/09/13 14:38:44 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1028,7 +1028,13 @@ a host-structure or string." (values (or null simple-base-string))) (with-pathname (pathname pathname) (when pathname - (let ((host (%pathname-host pathname))) + (let ((host (or (%pathname-host pathname) + ;; Is this what we really want? Does a NIL host + ;; really mean to get it from *d-p-d* and, if + ;; that's NIL, use *unix-host*? + (%pathname-host *default-pathname-defaults*) + *unix-host*) + )) (unless host (error "Cannot determine the namestring for pathnames with no ~ host:~% ~S" pathname)) -- GitLab