diff options
author | Mauro Aranda <maurooaranda@gmail.com> | 2023-10-23 18:04:25 -0300 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2023-10-23 23:16:13 +0200 |
commit | 297fe945c57c33b51b890ea105d5f7c15a520bd0 (patch) | |
tree | 19a3eab64d23f89f9458b33b2edf2900f910feb6 /lisp/gnus/gnus-bookmark.el | |
parent | 3beb5f5e2403571085b99d05e4ee781281a1fd9c (diff) | |
download | emacs-297fe945c57c33b51b890ea105d5f7c15a520bd0.tar.gz emacs-297fe945c57c33b51b890ea105d5f7c15a520bd0.tar.bz2 emacs-297fe945c57c33b51b890ea105d5f7c15a520bd0.zip |
Fix minor defcustom issues in Gnus (Bug#66715)
* lisp/gnus/gnus-art.el (gnus-button-prefer-mid-or-mail): Allow
function and add :tag to const values.
* lisp/gnus/gnus-bookmark.el (gnus-bookmark-bookmark-inline-details):
Fix docstring.
* lisp/gnus/gnus-sum.el (gnus-simplify-subject-fuzzy-regexp): Allow a
single regexp as value.
* lisp/gnus/message.el (message-indent-citation-function): Allow a
single function as value.
(message-mail-alias-type): Allow for a list of options as value.
(message-dont-reply-to-names): Allow a function as value.
* lisp/gnus/spam-report.el (spam-report-url-ping-function): Fix
default value for the function widget.
Diffstat (limited to 'lisp/gnus/gnus-bookmark.el')
-rw-r--r-- | lisp/gnus/gnus-bookmark.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-bookmark.el b/lisp/gnus/gnus-bookmark.el index 1a926619e14..ce8220f3a6e 100644 --- a/lisp/gnus/gnus-bookmark.el +++ b/lisp/gnus/gnus-bookmark.el @@ -112,7 +112,7 @@ You can toggle whether details are shown with \\<gnus-bookmark-bmenu-mode-map>\\ (defcustom gnus-bookmark-bookmark-inline-details '(author) "Details to be shown with `gnus-bookmark-bmenu-toggle-infos'. -The default value is \(subject)." +The default value is (author)." :type '(list :tag "Gnus bookmark details" (set :inline t (const :tag "Author" author) |