Function: gnus-simplify-group-name

gnus-simplify-group-name is a byte-compiled function defined in gnus-int.el.gz.

Signature

(gnus-simplify-group-name GROUP)

Documentation

Return the simplest representation of the name of GROUP.

This is the string that Gnus uses to identify the group.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-int.el.gz
(defun gnus-simplify-group-name (group)
  "Return the simplest representation of the name of GROUP.
This is the string that Gnus uses to identify the group."
  (gnus-group-prefixed-name
   (gnus-group-real-name group)
   (gnus-group-method group)))