Function: gnus-summary--goto-and-possibly-unhide

gnus-summary--goto-and-possibly-unhide is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary--goto-and-possibly-unhide &optional UNREAD UNDOWNLOADED UNSEEN)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary--goto-and-possibly-unhide (&optional unread undownloaded
                                                         unseen)
  (let ((first (gnus-summary-first-subject unread undownloaded unseen)))
    (if (and first
             (not (= first (gnus-summary-article-number))))
        (progn
          (gnus-summary-show-thread)
          (gnus-summary-first-subject unread undownloaded unseen))
      first)))