Function: gnus-group-real-prefix

gnus-group-real-prefix is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-group-real-prefix GROUP)

Documentation

Return the prefix of the current group name.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defun gnus-group-real-prefix (group)
  "Return the prefix of the current group name."
  (if (stringp group)
      (if (string-match "^[^:]+:" group)
	  (substring group 0 (match-end 0))
	"")
    nil))