Mercurial > emacs
changeset 18255:526858c7eef6
(mail-mode): Let all-white lines separate paragraphs.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 15 Jun 1997 07:36:22 +0000 |
parents | 5364d9d625b4 |
children | 27f2dfb2c1de |
files | lisp/mail/sendmail.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/sendmail.el Sun Jun 15 07:01:26 1997 +0000 +++ b/lisp/mail/sendmail.el Sun Jun 15 07:36:22 1997 +0000 @@ -347,7 +347,7 @@ ;; Lines containing just >= 3 dashes, perhaps after whitespace, ;; are also sometimes used and should be separators. (setq paragraph-start (concat (regexp-quote mail-header-separator) - "\\|$\\|" page-delimiter)) + "\\|[ \t]*$\\|" page-delimiter)) (setq paragraph-separate paragraph-start) (run-hooks 'text-mode-hook 'mail-mode-hook))