aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-06-15 07:36:22 +0000
committerRichard M. Stallman <[email protected]>1997-06-15 07:36:22 +0000
commit9cc92f8bd384877226545371ec3345c1a9411923 (patch)
tree31f6829e9dd04a8318aa7aec8648430480788bbc /lisp
parent89ada4ddee5b0db0c91243ef2ab05c3ed849d898 (diff)
(mail-mode): Let all-white lines separate paragraphs.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/sendmail.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index b278e0cff5..5432797eb2 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -347,7 +347,7 @@ C-c C-v mail-sent-via (add a Sent-via field for each To or CC)."
;; 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))