Function: gnus-group-get-description
gnus-group-get-description is a byte-compiled function defined in
gnus-start.el.gz.
Signature
(gnus-group-get-description GROUP)
Documentation
Get the description of a group by sending XGTITLE to the server.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-start.el.gz
(defun gnus-group-get-description (group)
"Get the description of a group by sending XGTITLE to the server."
(when (gnus-request-group-description group)
(with-current-buffer nntp-server-buffer
(goto-char (point-min))
(when (looking-at "[^ \t]+[ \t]+\\(.*\\)")
(match-string 1)))))