From eea4908a96c75902964d4f703ceaa4730b92701b Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Wed, 16 Oct 2002 14:44:39 +0000
Subject: [PATCH] Fix for the Entomotomy bug

translate-logical-pathname-fails-on-physical-pathname-namestrings

When translate-logical-pathname is given a physical pathname, it's
supposed to return the given pathname instead of signalling an error.
---
 code/pathname.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/pathname.lisp b/code/pathname.lisp
index 7e0645b8c..aad46a47f 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.57 2002/10/16 14:01:01 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.58 2002/10/16 14:44:39 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1976,7 +1976,7 @@ a host-structure or string."
 		    (translate-pathname pathname from to)))))))
     (pathname pathname)
     (stream (translate-logical-pathname (pathname pathname)))
-    (t (translate-logical-pathname (logical-pathname pathname)))))
+    (t (translate-logical-pathname (pathname pathname)))))
 
 (defvar *logical-pathname-defaults*
   (%make-logical-pathname (make-logical-host :name "BOGUS") :unspecific
-- 
GitLab