Function: org-gnus-open

org-gnus-open is a byte-compiled function defined in ol-gnus.el.gz.

Signature

(org-gnus-open PATH _)

Documentation

Follow the Gnus message or folder link specified by PATH.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol-gnus.el.gz
(defun org-gnus-open (path _)
  "Follow the Gnus message or folder link specified by PATH."
  (unless (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path)
    (error "Error in Gnus link %S" path))
  (let ((group (match-string-no-properties 1 path))
	(article (match-string-no-properties 3 path)))
    (org-gnus-follow-link group article)))