]> git.eshelyaron.com Git - emacs.git/commitdiff
; Cleanup nnselect-get-artlist
authorAndrew G Cohen <cohen@andy.bu.edu>
Thu, 31 Oct 2019 07:34:49 +0000 (15:34 +0800)
committerAndrew G Cohen <cohen@andy.bu.edu>
Thu, 31 Oct 2019 07:34:49 +0000 (15:34 +0800)
* lisp/gnus/nnselect.el (nnselect-get-artlist): Remove unnecessary let.

lisp/gnus/nnselect.el

index 4a2775f362083a2bf4aa482e4c51f5b35fd6929f..2d41179545ef906765e6944f60a97b8b8eb172af 100644 (file)
@@ -215,9 +215,8 @@ as `(keyfunc member)' and the corresponding element is just
 (defmacro nnselect-get-artlist (group)
   "Retrieve the list of articles for the group"
   `(when (gnus-nnselect-group-p ,group)
-     (let ((artlist
-           (gnus-group-get-parameter ,group 'nnselect-artlist t)))
-       (nnselect-uncompress-artlist artlist))))
+     (nnselect-uncompress-artlist
+      (gnus-group-get-parameter ,group 'nnselect-artlist t))))
 
 
 ;;; User Customizable Variables: