diff options
author | Teddy Wing | 2018-04-12 20:24:30 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-12 20:46:20 +0200 |
commit | 368931b4c0109f7148c7e350cc6daa082466ad47 (patch) | |
tree | b343de93a44eb24a12443bc4a0bd9dc30ae29ec7 | |
parent | b27a6f23c41d00b3ec51ac099f2b0b3e255c6b35 (diff) | |
download | w3m-session-backup-368931b4c0109f7148c7e350cc6daa082466ad47.tar.bz2 |
Print a message to the minibuffer when executed
Provide some user confirmation of the backup action. Otherwise, you're
left in doubt about whether the command actually ran.
-rw-r--r-- | w3m-session-backup.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/w3m-session-backup.el b/w3m-session-backup.el index a0f3cd0..1eecc49 100644 --- a/w3m-session-backup.el +++ b/w3m-session-backup.el @@ -103,7 +103,8 @@ (defun w3m-session-backup () "Save the current w3m crash recovery session to a new YAML file." (interactive) - (w3m-session-backup--save-backup)) + (w3m-session-backup--save-backup) + (minibuffer-message "Session saved")) (provide 'w3m-session-backup) |