]> git.eshelyaron.com Git - emacs.git/commitdiff
Unify docstrings of Gnus summary's copy/move/crosspost article functions
authorFilipp Gunbin <fgunbin@fastmail.fm>
Fri, 22 Nov 2019 16:23:51 +0000 (19:23 +0300)
committerFilipp Gunbin <fgunbin@fastmail.fm>
Fri, 22 Nov 2019 16:24:47 +0000 (19:24 +0300)
* lisp/gnus/gnus-sum.el (gnus-summary-copy-article)
(gnus-summary-crosspost-article): Make docstrings refer to
gnus-summary-move-article.

lisp/gnus/gnus-sum.el

index 6680254c8d4913f828e11d06bcf7998bcc68ad98..4a51d2c80b6ecade177124c9e8091ad4e42ec0f7 100644 (file)
@@ -10419,17 +10419,13 @@ ACTION can be either `move' (the default), `crosspost' or `copy'."
 
 (defun gnus-summary-copy-article (&optional n to-newsgroup select-method)
   "Copy the current article to some other group.
-If TO-NEWSGROUP is string, do not prompt for a newsgroup to copy to.
-When called interactively, if TO-NEWSGROUP is nil, use the value of
-the variable `gnus-move-split-methods' for finding a default target
-newsgroup.
-If SELECT-METHOD is non-nil, do not move to a specific newsgroup, but
-re-spool using this method."
+Arguments have the same meanings as in `gnus-summary-move-article'."
   (interactive "P")
   (gnus-summary-move-article n to-newsgroup select-method 'copy))
 
 (defun gnus-summary-crosspost-article (&optional n)
-  "Crosspost the current article to some other group."
+  "Crosspost the current article to some other group.
+Arguments have the same meanings as in `gnus-summary-move-article'."
   (interactive "P")
   (gnus-summary-move-article n nil nil 'crosspost))