Function: gnus-summary-skip-intangible

gnus-summary-skip-intangible is an autoloaded and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-skip-intangible)

Documentation

If the current article is intangible, then jump to a different article.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defsubst gnus-summary-skip-intangible ()
  ;; FIXME: Does this really warrant a `defsubst'?
  "If the current article is intangible, then jump to a different article."
   (let ((to (get-text-property (point) 'gnus-intangible)))
     (and to (gnus-summary-goto-subject to))))