Function: gnus-summary-maybe-hide-threads

gnus-summary-maybe-hide-threads is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-maybe-hide-threads)

Documentation

If requested, hide the threads that should be hidden.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-maybe-hide-threads ()
  "If requested, hide the threads that should be hidden."
  (when (and gnus-show-threads
	     gnus-thread-hide-subtree)
    (gnus-summary-hide-all-threads
     (if (or (consp gnus-thread-hide-subtree)
	     (functionp gnus-thread-hide-subtree))
	 (gnus-make-predicate gnus-thread-hide-subtree)
       nil))))