aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2016-12-08 18:33:26 +0100
committerMichael Albinus2016-12-08 18:33:26 +0100
commitc685e4c92909b2ae0140953417e0d856eb34ba33 (patch)
tree162df2f589c8bb4eef3225c547f94c5126d384ad
parentb67fdee18b07d55c44f3513d3d8a15d3b34ab4b6 (diff)
downloademacs-c685e4c92909b2ae0140953417e0d856eb34ba33.tar.gz
emacs-c685e4c92909b2ae0140953417e0d856eb34ba33.zip
; Fix last patch
-rw-r--r--lisp/files.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el
index ba6004686e7..6f6e8687f52 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -6923,7 +6923,7 @@ only these files will be asked to be saved."
6923 (save-match-data 6923 (save-match-data
6924 (while (consp file-arg-indices) 6924 (while (consp file-arg-indices)
6925 (let ((pair (nthcdr (car file-arg-indices) arguments))) 6925 (let ((pair (nthcdr (car file-arg-indices) arguments)))
6926 (and (car pair) (setcar pair (file-name-unquote 2)))) 6926 (and (car pair) (setcar pair (file-name-unquote (car pair)))))
6927 (setq file-arg-indices (cdr file-arg-indices)))) 6927 (setq file-arg-indices (cdr file-arg-indices))))
6928 (pcase method 6928 (pcase method
6929 (`identity (car arguments)) 6929 (`identity (car arguments))
@@ -6935,7 +6935,7 @@ only these files will be asked to be saved."
6935 (when (and visit buffer-file-name) 6935 (when (and visit buffer-file-name)
6936 (setq buffer-file-name (file-name-quote buffer-file-name)))))) 6936 (setq buffer-file-name (file-name-quote buffer-file-name))))))
6937 (`unquote-then-quote 6937 (`unquote-then-quote
6938 (let ((buffer-file-name (substring buffer-file-name 2))) 6938 (let ((buffer-file-name (file-name-unquote buffer-file-name)))
6939 (apply operation arguments))) 6939 (apply operation arguments)))
6940 (_ 6940 (_
6941 (apply operation arguments))))) 6941 (apply operation arguments)))))