aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Zlatanov2016-01-25 22:07:40 +0000
committerKatsumi Yamaoka2016-01-25 22:07:40 +0000
commitb579f36be21606c1ace8b10a4ef25144addc3dbd (patch)
treef949261917143a36e98254fb1e459a935a0dcefd
parent5b0bab034902d0fdabbc02b9d644e37082bc4632 (diff)
downloademacs-b579f36be21606c1ace8b10a4ef25144addc3dbd.tar.gz
emacs-b579f36be21606c1ace8b10a4ef25144addc3dbd.zip
* lisp/gnus/gnus-art.el (gnus-blocked-images):
Add explicit nil choice and tags.
-rw-r--r--lisp/gnus/gnus-art.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index 11ce04f799a..54bbfd857f1 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -1659,7 +1659,9 @@ called with the group name as the parameter, and should return a
1659regexp." 1659regexp."
1660 :version "24.1" 1660 :version "24.1"
1661 :group 'gnus-art 1661 :group 'gnus-art
1662 :type '(choice regexp function)) 1662 :type '(choice (const :tag "Allow all" nil)
1663 (regexp :tag "Regular expression")
1664 (function :tag "Use a function")))
1663 1665
1664;;; Internal variables 1666;;; Internal variables
1665 1667