diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-15 13:43:27 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-15 13:43:27 +0100 |
commit | 398811b7f67e2a27d31541e5200707911a3377ce (patch) | |
tree | 1a5fe09b7e0d117b4fbb53493080682480f5edaf /lisp/gnus/smiley.el | |
parent | b535c8ba8735409b43ec9b1ce99a966cfa1383b1 (diff) | |
download | emacs-398811b7f67e2a27d31541e5200707911a3377ce.tar.gz emacs-398811b7f67e2a27d31541e5200707911a3377ce.tar.bz2 emacs-398811b7f67e2a27d31541e5200707911a3377ce.zip |
Do `interactive' mode tagging in the remaining lisp/gnus files
Diffstat (limited to 'lisp/gnus/smiley.el')
-rw-r--r-- | lisp/gnus/smiley.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/smiley.el b/lisp/gnus/smiley.el index 3ee59479cf5..32283af52bf 100644 --- a/lisp/gnus/smiley.el +++ b/lisp/gnus/smiley.el @@ -242,7 +242,7 @@ interactively. If there's no argument, do it at the current buffer." (defun smiley-toggle-buffer (&optional arg) "Toggle displaying smiley faces in article buffer. With arg, turn displaying on if and only if arg is positive." - (interactive "P") + (interactive "P" gnus-article-mode gnus-summary-mode) (gnus-with-article-buffer (if (if (numberp arg) (> arg 0) |