Function: gnus-topic-copy-matching

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

Signature

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

Documentation

Copy 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-copy-matching (regexp topic &optional _copyp)
  "Copy all groups that match REGEXP to some topic."
  (interactive
   (let ((topic (gnus-completing-read "Copy to topic"
                                      (mapcar #'car gnus-topic-alist) t)))
     (nreverse
      (list topic
            (read-string (format "Copy to %s (regexp): " topic)))))
   gnus-topic-mode)
  (gnus-topic-move-matching regexp topic t))