diff options
| author | Lars Ingebrigtsen | 2019-07-26 10:34:02 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-07-26 10:55:45 +0200 |
| commit | f462fcd1ff60d0abf780bafe11a8f228b4fffab2 (patch) | |
| tree | 8b5e66de2811e5139f59286b620ee9ce916adef5 | |
| parent | e8ad8620a440f27d0de20d1062fad977886890ca (diff) | |
| download | emacs-f462fcd1ff60d0abf780bafe11a8f228b4fffab2.tar.gz emacs-f462fcd1ff60d0abf780bafe11a8f228b4fffab2.zip | |
Further tweak dired-compress error message
* lisp/dired-aux.el (dired-compress): The function is called on
both compression and uncompression, so be more ambiguous in the
error message.
| -rw-r--r-- | lisp/dired-aux.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 2b0d008de24..09850198ca5 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el | |||
| @@ -981,7 +981,7 @@ command with a prefix argument (the value does not matter)." | |||
| 981 | (goto-char start) | 981 | (goto-char start) |
| 982 | ;; Now replace the current line with an entry for NEW-FILE. | 982 | ;; Now replace the current line with an entry for NEW-FILE. |
| 983 | (dired-update-file-line new-file) nil) | 983 | (dired-update-file-line new-file) nil) |
| 984 | (dired-log (concat "Failed to compress " from-file)) | 984 | (dired-log (concat "Failed to (un)compress " from-file)) |
| 985 | from-file))) | 985 | from-file))) |
| 986 | 986 | ||
| 987 | (defvar dired-compress-file-suffixes | 987 | (defvar dired-compress-file-suffixes |