Skip to content
Snippets Groups Projects
Commit 6cc390a8 authored by toy's avatar toy
Browse files

Bob Rogers suggests that default-directory return a pathname with an

explicit unix host instead of leaving it unspecified.
parent be157ea2
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -1269,7 +1269,9 @@
(unix:unix-current-directory) (unix:unix-current-directory)
(if gr (if gr
(let ((*ignore-wildcards* t)) (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)))) (error dir-or-error))))
;;; %Set-Default-Directory -- Internal ;;; %Set-Default-Directory -- Internal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment