projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd2a2a1
)
* lisp/gnus/message.el (message-do-auto-fill): Prevent do-auto-fill from
author
Katsumi Yamaoka
<yamaoka@jpl.org>
Fri, 12 Jan 2018 03:54:07 +0000
(
03:54
+0000)
committer
Katsumi Yamaoka
<yamaoka@jpl.org>
Fri, 12 Jan 2018 03:54:07 +0000
(
03:54
+0000)
adding extra citation mark (bug#29767, but it is a different bug).
lisp/gnus/message.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/message.el
b/lisp/gnus/message.el
index aa6178be70539ff77f6a4e49a53f79dbe1f6453d..0eebbe299d28b2ee55e7d54abcec28ab6cf73657 100644
(file)
--- a/
lisp/gnus/message.el
+++ b/
lisp/gnus/message.el
@@
-3441,7
+3441,8
@@
Message buffers and is not meant to be called directly."
(defun message-do-auto-fill ()
"Like `do-auto-fill', but don't fill in message header."
(unless (message-point-in-header-p)
- (do-auto-fill)))
+ (let ((paragraph-separate (default-value 'paragraph-separate)))
+ (do-auto-fill))))
(defun message-insert-signature (&optional force)
"Insert a signature. See documentation for variable `message-signature'."