From: Eric Abrahamsen Date: Sat, 19 Dec 2020 23:25:14 +0000 (-0800) Subject: Fix default value of gnus-registry-register-all: should be t X-Git-Tag: emacs-28.0.90~4647 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=87b82a1969edf80d3bd4781454ec9fc968773a6d;p=emacs.git Fix default value of gnus-registry-register-all: should be t * lisp/gnus/gnus-registry.el (gnus-registry-register-all): This was meant to default to t; only an oversight during code review left it as nil. --- diff --git a/lisp/gnus/gnus-registry.el b/lisp/gnus/gnus-registry.el index 31aee0364cf..72412595a9a 100644 --- a/lisp/gnus/gnus-registry.el +++ b/lisp/gnus/gnus-registry.el @@ -163,7 +163,7 @@ nnmairix groups are specifically excluded because they are ephemeral." (const :tag "Always Install" t) (const :tag "Ask Me" ask))) -(defcustom gnus-registry-register-all nil +(defcustom gnus-registry-register-all t "If non-nil, register all articles in the registry." :type 'boolean :version "28.1") @@ -1094,7 +1094,7 @@ only the last one's marks are returned." (defun gnus-registry-get-or-make-entry (id &optional no-create) "Return registry entry for ID. -If entry is not found, create a new one, unless NO-create is +If entry is not found, create a new one, unless NO-CREATE is non-nil." (let* ((db gnus-registry-db) ;; safe if not found