From: Richard M. Stallman Date: Sun, 7 Jun 1998 01:30:29 +0000 (+0000) Subject: (mail-mode): Include `-- ' and `---+' in X-Git-Tag: emacs-20.3~699 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7a3662966cb7c548202347f4cdd85b87c97d2d4b;p=emacs.git (mail-mode): Include `-- ' and `---+' in paragraph-start and paragraph-separate. --- 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): ;; are also sometimes used and should be separators. (setq paragraph-start (concat (regexp-quote mail-header-separator) "$\\|[ \t]*[a-z0-9A-Z]*>+[ \t]*$\\|[ \t]*$\\|" + "-- $\\|---+$\\|" page-delimiter)) (setq paragraph-separate paragraph-start) (run-hooks 'text-mode-hook 'mail-mode-hook))