diff options
| -rw-r--r-- | lisp/files.el | 4 |
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))))) |