[gnus git] branch master updated: m0-11-58-gf080dd3 =1= Make signature respect format=flowed
Ted <[email protected]> Thu, 16 Oct 2014 14:46:34 +0200
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via f080dd39a64715fbeaf41a14524893ba75372057 (commit)
from c409b875b5d89126b60090822ce350f67e3e7fad (commit)
- Log -----------------------------------------------------------------
commit f080dd39a64715fbeaf41a14524893ba75372057
Author: Jorge A. Alfaro Murillo <[email protected]>
Date: Wed Oct 15 21:33:29 2014 -0400
Make signature respect format=flowed
* lisp/message.el (message-insert-signature): Use `newline' instead of
inserting explicit "\n".
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b872ca6..9b22b03 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2014-10-15 Jorge A. Alfaro-Murillo <[email protected]> (tiny change)
+
+ * message.el (message-insert-signature): Use `newline' instead of
+ inserting explicit "\n".
+
2014-10-15 Sylvain Chouleur <[email protected]>
* gnus-icalendar.el: Support vcal format timezones
diff --git a/lisp/message.el b/lisp/message.el
index 847652f..5ba42b1 100644
--- a/lisp/message.el
+++ b/lisp/message.el
@@ -3575,15 +3575,16 @@ Message buffers and is not meant to be called directly."
(goto-char (point-max))
;; Insert the signature.
(unless (bolp)
- (insert "\n"))
+ (newline))
(when message-signature-insert-empty-line
- (insert "\n"))
- (insert "-- \n")
+ (newline))
+ (insert "-- ")
+ (newline)
(if (eq signature t)
(insert-file-contents signature-file)
(insert signature))
(goto-char (point-max))
- (or (bolp) (insert "\n")))))
+ (or (bolp) (newline)))))
(defun message-insert-importance-high ()
"Insert header to mark message as important."
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/message.el | 9 +++++----
2 files changed, 10 insertions(+), 4 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project