Function: gnus-group-prefixed-name

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

Signature

(gnus-group-prefixed-name GROUP METHOD &optional FULL)

Documentation

Return the whole name from GROUP and METHOD.

Call with full set to get the fully qualified group name (even if the server is native).

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defun gnus-group-prefixed-name (group method &optional full)
  "Return the whole name from GROUP and METHOD.
Call with full set to get the fully qualified group name (even if the
server is native)."
  (when (stringp method)
    (setq method (gnus-server-to-method method)))
  (if (or (not method)
	  (and (not full) (gnus-server-equal method "native"))
	  ;;;!!! This might not be right.  We'll see...
	  ;(string-match ":" group)
	  )
      group
    (concat (gnus-method-to-server-name method) ":" group)))