diff options
| -rw-r--r-- | lisp/dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 733e522a9aa..57f67ca7c8c 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -2559,7 +2559,7 @@ instead of `dired-actual-switches'." | |||
| 2559 | ;; Undo any escaping of newlines and \ by dired-insert-directory. | 2559 | ;; Undo any escaping of newlines and \ by dired-insert-directory. |
| 2560 | ;; Convert "n" preceded by odd number of \ to newline, and \\ to \. | 2560 | ;; Convert "n" preceded by odd number of \ to newline, and \\ to \. |
| 2561 | (when (and (dired-switches-escape-p switches) | 2561 | (when (and (dired-switches-escape-p switches) |
| 2562 | (string-match "\\\\" new-dir-name)) | 2562 | (string-match-p "\\\\" new-dir-name)) |
| 2563 | (let (temp res) | 2563 | (let (temp res) |
| 2564 | (mapc (lambda (char) | 2564 | (mapc (lambda (char) |
| 2565 | (cond ((equal char ?\\) | 2565 | (cond ((equal char ?\\) |