From 1f9b241b09169abf2438c704422d040de07039b8 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Thu, 14 Nov 2002 13:24:33 +0000 Subject: [PATCH] Logical pathnames like "lpnhost:name.type" have directory component :ABSOLUTE instead of NIL, as required by CLHS. (I think.) --- code/pathname.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/pathname.lisp b/code/pathname.lisp index aad46a47f..47423a9a6 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.58 2002/10/16 14:44:39 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.59 2002/11/14 13:24:33 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1771,7 +1771,7 @@ a host-structure or string." :offset (cdadr chunks))))) (parse-host (logical-chunkify namestr start end))) (values host :unspecific - (and (not (equal (directory)'(:absolute)))(directory)) + (directory) name type version)))) -- GitLab