aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-06-12 04:32:29 +0000
committerRichard M. Stallman <[email protected]>1997-06-12 04:32:29 +0000
commita984234637e1e118404b78a056a082d204abd8a8 (patch)
treef584e3fddd9137e8e99c4f79ae1f1661c9edbe84 /lisp
parent5acc847d859ea609f87013fa71477a1b281a27d5 (diff)
(mail-mode): Change paragraph-start and
paragraph-separate not to match leading spaces.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mail/sendmail.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 54f8dbbcce..b278e0cff5 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -347,11 +347,8 @@ 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)
- "$\\|[ \t]*[-_][-_][-_]+$\\|-- $\\|-----\\|"
- paragraph-start))
- (setq paragraph-separate (concat (regexp-quote mail-header-separator)
- "$\\|[ \t]*[-_][-_][-_]+$\\|-- $\\|-----\\|"
- paragraph-separate))
+ "\\|$\\|" page-delimiter))
+ (setq paragraph-separate paragraph-start)
(run-hooks 'text-mode-hook 'mail-mode-hook))
(defun mail-mode-auto-fill ()