mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-16 05:21:26 +00:00
* lisp/dired.el (dired-build-subdir-alist): Restrict previous change.
(to only file names containing "\"s)
This commit is contained in:
parent
0e6038be96
commit
01153e4496
1 changed files with 2 additions and 1 deletions
|
|
@ -2558,7 +2558,8 @@ instead of `dired-actual-switches'."
|
|||
(setq count (1+ count))
|
||||
;; Undo any escaping of newlines and \ by dired-insert-directory.
|
||||
;; Convert "n" preceded by odd number of \ to newline, and \\ to \.
|
||||
(when (dired-switches-escape-p switches)
|
||||
(when (and (dired-switches-escape-p switches)
|
||||
(string-match "\\\\" new-dir-name))
|
||||
(let (temp res)
|
||||
(mapc (lambda (char)
|
||||
(cond ((equal char ?\\)
|
||||
|
|
|
|||
Loading…
Reference in a new issue