Function: gnus-group-describe-group
gnus-group-describe-group is an interactive and byte-compiled function
defined in gnus-group.el.gz.
Signature
(gnus-group-describe-group FORCE &optional GROUP)
Documentation
Display a description of the current newsgroup.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-describe-group (force &optional group)
"Display a description of the current newsgroup."
(interactive (list current-prefix-arg (gnus-group-group-name))
gnus-group-mode)
(let* ((method (gnus-find-method-for-group group))
(mname (gnus-group-prefixed-name "" method))
desc)
(when (and force
gnus-description-hashtb)
(remhash mname gnus-description-hashtb))
(unless group
(error "No group name given"))
(when (or (and gnus-description-hashtb
;; We check whether this group's method has been
;; queried for a description file.
(gethash mname gnus-description-hashtb))
(setq desc (gnus-group-get-description group))
(gnus-read-descriptions-file method))
(gnus-message 1 "%s"
(or desc (gethash group gnus-description-hashtb)
"No description available")))))