Function: org-gnus-no-new-news
org-gnus-no-new-news is a byte-compiled function defined in
ol-gnus.el.gz.
Signature
(org-gnus-no-new-news &optional OTHER-FRAME)
Documentation
Like M-x gnus (gnus) but doesn't check for new news.
In case of OTHER-FRAME or gnus-other-frame-object call gnus-other-frame.
Ensures that gnus-other-frame is activated correctly if dead.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol-gnus.el.gz
(defun org-gnus-no-new-news (&optional other-frame)
"Like `\\[gnus]' but doesn't check for new news.
In case of OTHER-FRAME or `gnus-other-frame-object' call `gnus-other-frame'.
Ensures that `gnus-other-frame' is activated correctly if dead."
(let ((action (cond (org-gnus-no-server #'gnus-no-server)
(t #'gnus))))
(cond ((or other-frame gnus-other-frame-object)
(let ((gnus-other-frame-function action)
(gnus-other-frame-resume-function action))
(gnus-other-frame)))
(t (if (not (gnus-alive-p))
(funcall action))))))