1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(dired-build-subdir-alist): Expand subdirectory names

correctly in recursive ange-ftp listings.
This commit is contained in:
Gerd Moellmann 2000-07-30 11:49:11 +00:00
parent c0178a99f8
commit b4c017767f

View File

@ -1764,7 +1764,13 @@ Returns the new value of the alist."
(save-excursion
(let ((count 0)
(buffer-read-only nil)
new-dir-name)
new-dir-name
(R-ftp-base-dir-regex
;; Used to expand subdirectory names correctly in recursive
;; ange-ftp listings.
(and (string-match "R" dired-actual-switches)
(string-match "\\`/.*:\\(/.*\\)" default-directory)
(concat "\\`" (match-string 1 default-directory)))))
(goto-char (point-min))
(setq dired-subdir-alist nil)
(while (and (re-search-forward dired-subdir-regexp nil t)
@ -1778,7 +1784,15 @@ Returns the new value of the alist."
(save-excursion
(goto-char (match-beginning 1))
(setq new-dir-name
(expand-file-name (buffer-substring (point) (match-end 1))))
(buffer-substring-no-properties (point) (match-end 1))
new-dir-name
(save-match-data
(if (and R-ftp-base-dir-regex
(not (string= new-dir-name default-directory))
(string-match R-ftp-base-dir-regex new-dir-name))
(concat default-directory
(substring new-dir-name (match-end 0)))
(expand-file-name new-dir-name))))
(delete-region (point) (match-end 1))
(insert new-dir-name))
(setq count (1+ count))