aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-06-07 01:30:29 +0000
committerRichard M. Stallman1998-06-07 01:30:29 +0000
commit7a3662966cb7c548202347f4cdd85b87c97d2d4b (patch)
tree6e1a14ee17c7ad7d65ba95b40810c7b7e0a42abb
parentb2c677c2c9c91ce0e16ccc6a68dbba027c4cbffa (diff)
downloademacs-7a3662966cb7c548202347f4cdd85b87c97d2d4b.tar.gz
emacs-7a3662966cb7c548202347f4cdd85b87c97d2d4b.zip
(mail-mode): Include `-- ' and `---+' in
paragraph-start and paragraph-separate.
-rw-r--r--lisp/mail/sendmail.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 4e2ce685ca5..950c9b50aff 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -426,6 +426,7 @@ Here are commands that move to a header field (and create it if there isn't):
426 ;; are also sometimes used and should be separators. 426 ;; are also sometimes used and should be separators.
427 (setq paragraph-start (concat (regexp-quote mail-header-separator) 427 (setq paragraph-start (concat (regexp-quote mail-header-separator)
428 "$\\|[ \t]*[a-z0-9A-Z]*>+[ \t]*$\\|[ \t]*$\\|" 428 "$\\|[ \t]*[a-z0-9A-Z]*>+[ \t]*$\\|[ \t]*$\\|"
429 "-- $\\|---+$\\|"
429 page-delimiter)) 430 page-delimiter))
430 (setq paragraph-separate paragraph-start) 431 (setq paragraph-separate paragraph-start)
431 (run-hooks 'text-mode-hook 'mail-mode-hook)) 432 (run-hooks 'text-mode-hook 'mail-mode-hook))