diff options
author | Teddy Wing | 2018-04-11 21:39:45 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-11 21:39:45 +0200 |
commit | a4f4e358879b3c3b95e6d82cf13fbc4288cf8e03 (patch) | |
tree | 03a08fcb33c6c2e69e115278733a3365619db61c | |
parent | f9b98ba9118195db1f6ada1954404fa39d413b76 (diff) | |
download | w3m-session-backup-a4f4e358879b3c3b95e6d82cf13fbc4288cf8e03.tar.bz2 |
Add a `M-x` command to run the backup operation
-rw-r--r-- | w3m-session-backup.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/w3m-session-backup.el b/w3m-session-backup.el index 34300e6..2a15479 100644 --- a/w3m-session-backup.el +++ b/w3m-session-backup.el @@ -78,3 +78,10 @@ (w3m-session-backup--save-backup) ;; Make filename customisable + +;; Make M-x command to write session backup + +(defun w3m-session-backup () + "TODO" + (interactive) + (w3m-session-backup--save-backup)) |