From f5ac7c0bb790f3eb977065bfc752f155cbab1fb4 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Sat, 24 Sep 2005 01:26:37 +0000 Subject: [PATCH] Oops. ENOUGH-NAMESTRING is supposed to return a namestring, not a pathname object. --- code/pathname.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/pathname.lisp b/code/pathname.lisp index c13c69df3..0c1b04ce9 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.78 2005/09/21 20:01:34 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.79 2005/09/24 01:26:37 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1108,7 +1108,7 @@ a host-structure or string." ;; different. (if (equal host (%pathname-host defaults)) (funcall (host-unparse-enough host) pathname defaults) - pathname)) + (namestring pathname))) (error "Cannot determine the namestring for pathnames with no host:~% ~S" pathname))))) -- GitLab