changeset 14651:fba27ff5d896

(mail-mode): Treat `-- ' line as paragraph separator.
author Richard M. Stallman <rms@gnu.org>
date Fri, 23 Feb 1996 20:14:40 +0000
parents 2e418434d5d5
children 1c0841475030
files lisp/mail/sendmail.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/sendmail.el	Fri Feb 23 06:38:27 1996 +0000
+++ b/lisp/mail/sendmail.el	Fri Feb 23 20:14:40 1996 +0000
@@ -328,10 +328,10 @@
   (make-local-variable 'paragraph-separate)
   (make-local-variable 'paragraph-start)
   (setq paragraph-start (concat (regexp-quote mail-header-separator)
-				"$\\|[ \t]*[-_][-_][-_]+$\\|"
+				"$\\|[ \t]*[-_][-_][-_]+$\\|-- \\|"
 				paragraph-start))
   (setq paragraph-separate (concat (regexp-quote mail-header-separator)
-				   "$\\|[ \t]*[-_][-_][-_]+$\\|"
+				   "$\\|[ \t]*[-_][-_][-_]+$\\|-- \\|"
 				   paragraph-separate))
   (run-hooks 'text-mode-hook 'mail-mode-hook))