From 87b82a1969edf80d3bd4781454ec9fc968773a6d Mon Sep 17 00:00:00 2001 From: Eric Abrahamsen Date: Sat, 19 Dec 2020 15:25:14 -0800 Subject: [PATCH] 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. --- lisp/gnus/gnus-registry.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2