1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

* lisp/gnus/message.el (message-do-auto-fill): Prevent do-auto-fill from

adding extra citation mark (bug#29767, but it is a different bug).
This commit is contained in:
Katsumi Yamaoka 2018-01-12 03:54:07 +00:00
parent bd2a2a1e84
commit bce51bd6f7

View File

@ -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'."