From ac8df569345a59b620efd93b0699d0adbd54f88b Mon Sep 17 00:00:00 2001 From: Andrew G Cohen Date: Fri, 25 Oct 2019 11:00:56 +0800 Subject: [PATCH] ; Fix retrieving the nnselect artlist when nil --- lisp/gnus/nnselect.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/nnselect.el b/lisp/gnus/nnselect.el index 27389ae8810..5dbc9b21180 100644 --- a/lisp/gnus/nnselect.el +++ b/lisp/gnus/nnselect.el @@ -211,7 +211,7 @@ as `(keyfunc member)' and the corresponding element is just `(when (gnus-nnselect-group-p ,group) (let ((artlist (gnus-group-get-parameter ,group 'nnselect-artlist t))) - (if (vectorp artlist) + (if (or (not artlist) (vectorp artlist)) artlist (nnselect-uncompress-artlist artlist))))) -- 2.39.5