]> git.eshelyaron.com Git - emacs.git/commitdiff
Allow an info structure as argument for gnus-group-get-parameter
authorAndrew G Cohen <cohen@andy.bu.edu>
Fri, 11 Sep 2020 02:31:47 +0000 (10:31 +0800)
committerAndrew G Cohen <cohen@andy.bu.edu>
Fri, 11 Sep 2020 02:31:47 +0000 (10:31 +0800)
* lisp/gnus/gnus.el (gnus-group-get-parameter): Allow the group
argument to be either a group name or a group info structure. This is
then parallel to gnus-group-set-parameter.

lisp/gnus/gnus.el

index 8cd35e3d7b799b9a2b725d30e905ad413ba6b652..cb534260a65e6d82f0f20d63728e6b3b3f386f1c 100644 (file)
@@ -3628,11 +3628,12 @@ If you call this function inside a loop, consider using the faster
 
 (defun gnus-group-get-parameter (group &optional symbol allow-list)
   "Return the group parameters for GROUP.
-If SYMBOL, return the value of that symbol in the group parameters.
-If ALLOW-LIST, also allow list as a result.
-Most functions should use `gnus-group-find-parameter', which
-also examines the topic parameters."
-  (let ((params (gnus-info-params (gnus-get-info group))))
+If SYMBOL, return the value of that symbol in the group
+parameters.  If ALLOW-LIST, also allow list as a result.  Most
+functions should use `gnus-group-find-parameter', which also
+examines the topic parameters.  GROUP can also be an info structure."
+  (let ((params (gnus-info-params (if (listp group) group
+                                   (gnus-get-info group)))))
     (if symbol
        (gnus-group-parameter-value params symbol allow-list)
       params)))