From 6cc390a85723090c29beb5adfd59ad0355b5c709 Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Fri, 8 Nov 2002 15:26:51 +0000
Subject: [PATCH] Bob Rogers suggests that default-directory return a pathname
 with an explicit unix host instead of leaving it unspecified.

---
 code/filesys.lisp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/code/filesys.lisp b/code/filesys.lisp
index 9a1b3c3d5..950ee3537 100644
--- a/code/filesys.lisp
+++ b/code/filesys.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/filesys.lisp,v 1.69 2002/10/16 14:01:01 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.70 2002/11/08 15:26:51 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1269,7 +1269,9 @@
 		       (unix:unix-current-directory)
     (if gr
 	(let ((*ignore-wildcards* t))
-	  (pathname (concatenate 'simple-string dir-or-error "/")))
+	  (values
+	   (parse-namestring (concatenate 'simple-string dir-or-error "/")
+			     *unix-host*)))
 	(error dir-or-error))))
 
 ;;; %Set-Default-Directory  --  Internal
-- 
GitLab