Function: gnus-group-find-new-groups

gnus-group-find-new-groups is an interactive and byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-find-new-groups &optional ARG)

Documentation

Search for new groups and add them.

Each new group will be treated with gnus-subscribe-newsgroup-method. With 1 C-u (universal-argument), use the ask-server method to query the server for new groups. With 2 C-u (universal-argument)'s, use most complete method possible to query the server for new groups, and subscribe the new groups as zombies.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-find-new-groups (&optional arg)
  "Search for new groups and add them.
Each new group will be treated with `gnus-subscribe-newsgroup-method'.
With 1 \\[universal-argument], use the `ask-server' method to query the server for new
groups.
With 2 \\[universal-argument]'s, use most complete method possible to query the server
for new groups, and subscribe the new groups as zombies."
  (interactive "p" gnus-group-mode)
  (let ((new-groups (gnus-find-new-newsgroups (or arg 1)))
	current-group)
    (gnus-group-list-groups)
    (setq current-group (gnus-group-group-name))
    (dolist (group new-groups)
      (gnus-group-jump-to-group group))
    (when current-group
      (gnus-group-jump-to-group current-group))))