Function: gnus-no-server

gnus-no-server is an autoloaded, interactive and byte-compiled function defined in gnus.el.gz.

Signature

(gnus-no-server &optional ARG CHILD)

Documentation

Read network news.

If ARG is a positive number, Gnus will use that as the startup level. If ARG is nil, Gnus will be started at level 2. If ARG is non-nil and not a positive number, Gnus will prompt the user for the name of an NNTP server to use. As opposed to gnus, this command will not connect to the local server.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
;;;###autoload
(defun gnus-no-server (&optional arg child)
  "Read network news.
If ARG is a positive number, Gnus will use that as the startup level.
If ARG is nil, Gnus will be started at level 2.  If ARG is non-nil
and not a positive number, Gnus will prompt the user for the name of
an NNTP server to use.
As opposed to `gnus', this command will not connect to the local
server."
  (interactive "P")
  (gnus-no-server-1 arg child))