mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
Print a message when failing to recover a file
* lisp/files.el (recover-session-finish): Call 'message' rather than evaluating a string and a variable without using the result.
This commit is contained in:
parent
073d06e34e
commit
f69b822fb0
1 changed files with 2 additions and 1 deletions
|
|
@ -7600,7 +7600,8 @@ This command is used in the special Dired buffer created by
|
|||
(condition-case nil
|
||||
(save-excursion (recover-file file))
|
||||
(error
|
||||
"Failed to recover `%s'" file)))
|
||||
(message
|
||||
"Failed to recover `%s'" file))))
|
||||
files
|
||||
'("file" "files" "recover"))
|
||||
(message "No files can be recovered from this session now")))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue