Skip to content
Snippets Groups Projects
Commit 0124f2c2 authored by ram's avatar ram
Browse files

Changed pathname printer to use #P.

parent a24709e9
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,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.10 1991/05/28 17:50:35 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/filesys.lisp,v 1.11 1991/08/22 16:03:37 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
(defun %print-pathname (s stream d) (defun %print-pathname (s stream d)
(declare (ignore d)) (declare (ignore d))
(format stream "#.(pathname ~S)" (namestring s))) (format stream "#p~S" (namestring s)))
(defun make-pathname (&key defaults (host nil hostp) (device nil devicep) (defun make-pathname (&key defaults (host nil hostp) (device nil devicep)
(directory nil directoryp) (name nil namep) (directory nil directoryp) (name nil namep)
......
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