Function: gnus-group-mark-update
gnus-group-mark-update is a byte-compiled function defined in
gnus-group.el.gz.
Signature
(gnus-group-mark-update N &optional UNMARK)
Documentation
Set the process mark on current group and update the group line.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-mark-update (n &optional unmark)
"Set the process mark on current group and update the group line."
(if unmark
(progn
(setq gnus-group-marked
(delete n gnus-group-marked))
(insert-char ?\s 1 t))
(progn
(setq gnus-group-marked
(cons n (delete n gnus-group-marked)))
(insert-char gnus-process-mark 1 t))))