Function: gnus-topic-unmark-topic

gnus-topic-unmark-topic is an interactive and byte-compiled function defined in gnus-topic.el.gz.

Signature

(gnus-topic-unmark-topic TOPIC &optional DUMMY NON-RECURSIVE)

Documentation

Remove the process mark from all groups in the TOPIC.

If NON-RECURSIVE (which is the prefix) is t, don't unmark its subtopics.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-unmark-topic (topic &optional _dummy non-recursive)
  "Remove the process mark from all groups in the TOPIC.
If NON-RECURSIVE (which is the prefix) is t, don't unmark its subtopics."
  (interactive (list (gnus-group-topic-name)
		     nil
		     (and current-prefix-arg t))
	       gnus-topic-mode)
  (if (not topic)
      (call-interactively 'gnus-group-unmark-group)
    (gnus-topic-mark-topic topic t non-recursive t)))