aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-04-12 20:24:30 +0200
committerTeddy Wing2018-04-12 20:46:20 +0200
commit368931b4c0109f7148c7e350cc6daa082466ad47 (patch)
treeb343de93a44eb24a12443bc4a0bd9dc30ae29ec7
parentb27a6f23c41d00b3ec51ac099f2b0b3e255c6b35 (diff)
downloadw3m-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.el3
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)