Function: nnmairix-group-toggle-threads-this-group

nnmairix-group-toggle-threads-this-group is an interactive and byte-compiled function defined in nnmairix.el.gz.

Signature

(nnmairix-group-toggle-threads-this-group &optional THREADS)

Documentation

Toggle threads parameter for this group.

If THREADS is a positive number, set threads parameter to t. If THREADS is a negative number, set it to nil.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnmairix.el.gz
(defun nnmairix-group-toggle-threads-this-group (&optional threads)
  "Toggle threads parameter for this group.
If THREADS is a positive number, set threads parameter to t.
If THREADS is a negative number, set it to nil."
  (interactive)
  (let ((group (gnus-group-group-name)))
    (when (nnmairix-group-toggle-parameter
	   group 'threads "Threads" threads)
      (nnmairix-update-and-clear-marks group))))