Variable: gnus-build-sparse-threads

gnus-build-sparse-threads is a customizable variable defined in gnus-sum.el.gz.

Value

nil

Documentation

If non-nil, fill in the gaps in threads.

If set to the symbol some, only fill in the gaps that are needed to tie loose threads together. If the symbol more, fill in all leaf nodes that Gnus can find. If t (or any other value), fill in all gaps that Gnus manages to guess.

Probably introduced at or before Emacs version 19.32.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-build-sparse-threads nil
  "If non-nil, fill in the gaps in threads.
If set to the symbol `some', only fill in the gaps that are
needed to tie loose threads together.  If the symbol `more', fill
in all leaf nodes that Gnus can find.  If t (or any other value),
fill in all gaps that Gnus manages to guess."
  :group 'gnus-thread
  :type '(choice (const :tag "off" nil)
		 (const some)
		 (const more)
		 (sexp :menu-tag "all" t)))