Function: gnus-group-listed-groups

gnus-group-listed-groups is a byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-listed-groups)

Documentation

Return a list of listed groups.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-listed-groups ()
  "Return a list of listed groups."
  (let (point groups)
    (goto-char (point-min))
    (while (setq point (text-property-not-all (point) (point-max)
					      'gnus-group nil))
      (goto-char point)
      (push (get-text-property point 'gnus-group) groups)
      (forward-char 1))
    groups))