Function: gnus-group-group-name
gnus-group-group-name is an autoloaded and byte-compiled function
defined in gnus-group.el.gz.
Signature
(gnus-group-group-name)
Documentation
Get the name of the newsgroup on the current line.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-group-name ()
"Get the name of the newsgroup on the current line."
(let ((group (get-text-property (line-beginning-position) 'gnus-group)))
(cond ((stringp group) group)
(group (symbol-name group)))))