]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix retrieving the nnselect artlist when nil
authorAndrew G Cohen <cohen@andy.bu.edu>
Fri, 25 Oct 2019 03:00:56 +0000 (11:00 +0800)
committerAndrew G Cohen <cohen@andy.bu.edu>
Fri, 25 Oct 2019 03:00:56 +0000 (11:00 +0800)
lisp/gnus/nnselect.el

index 27389ae88104d57c2bd7ff82b8ac1098d6ee7d19..5dbc9b21180b48909ee2f716d554a3849d3428ff 100644 (file)
@@ -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)))))