Function: gnus-group-remove-mark

gnus-group-remove-mark is a byte-compiled function defined in gnus-group.el.gz.

Signature

(gnus-group-remove-mark GROUP &optional TEST-MARKED)

Documentation

Remove the process mark from GROUP and move point there.

Return nil if the group isn't displayed.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defun gnus-group-remove-mark (group &optional test-marked)
  "Remove the process mark from GROUP and move point there.
Return nil if the group isn't displayed."
  (if (gnus-group-goto-group group nil test-marked)
      (save-excursion
	(gnus-group-mark-group 1 'unmark t t)
	t)
    (setq gnus-group-marked
	  (delete group gnus-group-marked))
    nil))