Function: gnus-no-server-1

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

Signature

(gnus-no-server-1 &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
(gnus-level-default-subscribed minus one). 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 M-x gnus (gnus), this command will not connect to the local server.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-start.el.gz
(defun gnus-no-server-1 (&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
\(`gnus-level-default-subscribed' minus one).  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."
  (let ((val (or arg (1- gnus-level-default-subscribed))))
    (gnus val t child)
    (setq-local gnus-group-use-permanent-levels val)))