summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-12-28 11:20:23 -0500
committerKyle Meyer <kyle@kyleam.com>2014-12-28 11:20:23 -0500
commit6df30190d402e421af20003c60ed50d4a370583d (patch)
tree8fda27ae06e6ad4828f831aef3159832dec4ad1a
parent94e3cf2cd12248b31d021331eb4606223a1ee814 (diff)
downloademacs.d-6df30190d402e421af20003c60ed50d4a370583d.tar.gz
Update snip-mail-quote docstring
-rw-r--r--lisp/init-gnus.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/init-gnus.el b/lisp/init-gnus.el
index cbbf2b8..2eb2253 100644
--- a/lisp/init-gnus.el
+++ b/lisp/init-gnus.el
@@ -178,11 +178,11 @@ A new buffer with the patch contents is opened in another window."
;; Modified from
;; http://emacs-fu.blogspot.com/2008/12/some-simple-tricks-boxquote-footnote.html.
(defun km/snip-mail-quote (beg end &optional number quote-char)
- "Replace region lines with \"[n lines ...]\".
-If NUMBER is non-nil (or when called interactively with a prefix
-argument), add the number of lines that were snipped. The default
-QUOTE-CHAR is \">\". Text following the snipped lines is placed
-on a new line and the resulting paragraph is filled."
+ "Replace region lines with \"[...]\".
+If prefix argument NUMBER is non-nil, add the number of lines
+that were snipped. The default QUOTE-CHAR is \">\". Text
+following the snipped lines is placed on a new line and the
+resulting paragraph is filled."
(interactive "r\nP")
(let ((nlines (count-lines beg end))
(quote-char (or quote-char ">")))