emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master d3f0cf7: Unify docstrings of Gnus summary's copy/move/crosspost a


From: Filipp Gunbin
Subject: master d3f0cf7: Unify docstrings of Gnus summary's copy/move/crosspost article functions
Date: Fri, 22 Nov 2019 11:24:56 -0500 (EST)

branch: master
commit d3f0cf7404064ecb937036254b4cca3141e7095b
Author: Filipp Gunbin <address@hidden>
Commit: Filipp Gunbin <address@hidden>

    Unify docstrings of Gnus summary's copy/move/crosspost article functions
    
    * 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 | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 6680254..4a51d2c 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -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))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]