From 01153e4496db5be3e9041245ca8a5483bf0b328c Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 17 Jan 2012 19:08:05 -0500 Subject: [PATCH] * lisp/dired.el (dired-build-subdir-alist): Restrict previous change. (to only file names containing "\"s) --- lisp/dired.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/dired.el b/lisp/dired.el index 34fb651db10..733e522a9aa 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -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 ?\\) -- 2.39.5