diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-14 14:14:48 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-14 14:14:48 +0100 |
commit | c0221990c46a89b6ecbc8c831225785405aa82b7 (patch) | |
tree | f41a7b156b44559c173a147f0040a6a06673337d /lisp/gnus/gnus-vm.el | |
parent | 869cdcf4e7a787534d275ca6fc0a792ab642c764 (diff) | |
download | emacs-c0221990c46a89b6ecbc8c831225785405aa82b7.tar.gz |
Do `interactive' mode markup in all Gnus files
Diffstat (limited to 'lisp/gnus/gnus-vm.el')
-rw-r--r-- | lisp/gnus/gnus-vm.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-vm.el b/lisp/gnus/gnus-vm.el index b7e6b2a8890..ec3601109e9 100644 --- a/lisp/gnus/gnus-vm.el +++ b/lisp/gnus/gnus-vm.el @@ -72,7 +72,7 @@ If N is a positive number, save the N next articles. If N is a negative number, save the N previous articles. If N is nil and any articles have been marked with the process mark, save those articles instead." - (interactive "P") + (interactive "P" gnus-article-mode gnus-summary-mode) (require 'gnus-art) (let ((gnus-default-article-saver 'gnus-summary-save-in-vm)) (gnus-summary-save-article arg))) @@ -80,7 +80,7 @@ save those articles instead." (declare-function vm-save-message "ext:vm-save" (folder &optional count)) (defun gnus-summary-save-in-vm (&optional folder) - (interactive) + (interactive nil gnus-article-mode gnus-summary-mode) (require 'vm) (setq folder (gnus-read-save-file-name |