Function: gnus-group-quick-select-group

gnus-group-quick-select-group is an interactive and byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-quick-select-group &optional ALL GROUP)

Documentation

Select the GROUP "quickly".

This means that no highlighting or scoring will be performed. If ALL (the prefix argument) is 0, don't even generate the summary buffer. If GROUP is nil, use current group.

This might be useful if you want to toggle threading before entering the group.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-quick-select-group (&optional all group)
  "Select the GROUP \"quickly\".
This means that no highlighting or scoring will be performed.  If
ALL (the prefix argument) is 0, don't even generate the summary
buffer.  If GROUP is nil, use current group.

This might be useful if you want to toggle threading
before entering the group."
  (interactive "P" gnus-group-mode)
  (require 'gnus-score)
  (let (gnus-visual
	gnus-score-find-score-files-function
	gnus-home-score-file
	gnus-apply-kill-hook
	gnus-summary-expunge-below)
    (gnus-group-read-group all t group)))