aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-15 07:36:22 +0000
committerRichard M. Stallman1997-06-15 07:36:22 +0000
commit9cc92f8bd384877226545371ec3345c1a9411923 (patch)
tree31f6829e9dd04a8318aa7aec8648430480788bbc
parent89ada4ddee5b0db0c91243ef2ab05c3ed849d898 (diff)
downloademacs-9cc92f8bd384877226545371ec3345c1a9411923.tar.gz
emacs-9cc92f8bd384877226545371ec3345c1a9411923.zip
(mail-mode): Let all-white lines separate paragraphs.
-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 b278e0cff54..5432797eb2c 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)."
347 ;; Lines containing just >= 3 dashes, perhaps after whitespace, 347 ;; Lines containing just >= 3 dashes, perhaps after whitespace,
348 ;; are also sometimes used and should be separators. 348 ;; are also sometimes used and should be separators.
349 (setq paragraph-start (concat (regexp-quote mail-header-separator) 349 (setq paragraph-start (concat (regexp-quote mail-header-separator)
350 "\\|$\\|" page-delimiter)) 350 "\\|[ \t]*$\\|" page-delimiter))
351 (setq paragraph-separate paragraph-start) 351 (setq paragraph-separate paragraph-start)
352 (run-hooks 'text-mode-hook 'mail-mode-hook)) 352 (run-hooks 'text-mode-hook 'mail-mode-hook))
353 353