From b11fd5ec2ec58b9c3bf3d6573a498ae44a31c531 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Wed, 4 Aug 1993 09:39:25 +0000
Subject: [PATCH] Make %ENUMERATE-SEARCH-LIST call TRANSLATE-LOGICAL-PATHNAME.

---
 code/pathname.lisp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/code/pathname.lisp b/code/pathname.lisp
index b648d4229..5727b0c96 100644
--- a/code/pathname.lisp
+++ b/code/pathname.lisp
@@ -6,7 +6,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.19 1993/08/03 13:26:57 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pathname.lisp,v 1.20 1993/08/04 09:39:25 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1382,7 +1382,9 @@
 	 ,result))))
 
 (defun %enumerate-search-list (pathname function)
-  (let ((search-list (extract-search-list pathname nil)))
+  (let ((search-list (extract-search-list
+		      (translate-logical-pathname pathname)
+		      nil)))
     (cond
      ((not search-list)
       (funcall function pathname))
-- 
GitLab