Function: gnus-topic-move-matching

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

Signature

(gnus-topic-move-matching REGEXP TOPIC &optional COPYP)

Documentation

Move all groups that match REGEXP to some topic.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-move-matching (regexp topic &optional copyp)
  "Move all groups that match REGEXP to some topic."
  (interactive
   (let (topic)
     (nreverse
      (list
       (setq topic (gnus-completing-read "Move to topic"
                                         (mapcar #'car gnus-topic-alist) t))
       (read-string (format "Move to %s (regexp): " topic)))))
   gnus-topic-mode)
  (gnus-group-mark-regexp regexp)
  (gnus-topic-move-group nil topic copyp))