Function: gnus-topic-copy-group

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

Signature

(gnus-topic-copy-group N TOPIC)

Documentation

Copy the current group to a topic.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-topic.el.gz
(defun gnus-topic-copy-group (n topic)
  "Copy the current group to a topic."
  (interactive
   (list current-prefix-arg
	 (gnus-completing-read
	  "Copy to topic" (mapcar #'car gnus-topic-alist) t))
   gnus-topic-mode)
  (gnus-topic-move-group n topic t))