aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/dired.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index e3273f732f0..f01349a361a 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -1299,8 +1299,8 @@ Optional arg NO-ERROR-IF-NOT-FILEP means return nil if no filename on
1299 "\\([^\\]\\|\\`\\)\"" file "\\1\\\\\"" nil t) 1299 "\\([^\\]\\|\\`\\)\"" file "\\1\\\\\"" nil t)
1300 file) 1300 file)
1301 "\""))))) 1301 "\"")))))
1302 (if buffer-file-coding-system 1302 (and file buffer-file-coding-system
1303 (setq file (encode-coding-string file buffer-file-coding-system))) 1303 (setq file (encode-coding-string file buffer-file-coding-system)))
1304 (if (eq localp 'no-dir) 1304 (if (eq localp 'no-dir)
1305 file 1305 file
1306 (and file (concat (dired-current-directory localp) file))))) 1306 (and file (concat (dired-current-directory localp) file)))))