Function: gnus-group-mark-region
gnus-group-mark-region is an interactive and byte-compiled function
defined in gnus-group.el.gz.
Signature
(gnus-group-mark-region UNMARK BEG END)
Documentation
Mark all groups between point and mark.
If UNMARK, remove the mark instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-mark-region (unmark beg end)
"Mark all groups between point and mark.
If UNMARK, remove the mark instead."
(interactive "P\nr" gnus-group-mode)
(let ((num (count-lines beg end)))
(save-excursion
(goto-char beg)
(- num (gnus-group-mark-group num unmark nil t)))))