diff options
| author | Richard M. Stallman | 1996-02-23 20:14:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-02-23 20:14:40 +0000 |
| commit | f7111cbf2a1d4147442688b5a5825c4afaa0ec67 (patch) | |
| tree | 70bd2f6fe6d55624077ae4ca42b18f834a17a761 | |
| parent | 40600c94592ecf9467cb04bb2aa9efc0aa16e4de (diff) | |
| download | emacs-f7111cbf2a1d4147442688b5a5825c4afaa0ec67.tar.gz emacs-f7111cbf2a1d4147442688b5a5825c4afaa0ec67.zip | |
(mail-mode): Treat `-- ' line as paragraph separator.
| -rw-r--r-- | lisp/mail/sendmail.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 59d6a46ff40..b265e25fdf1 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -328,10 +328,10 @@ C-c C-v mail-sent-via (add a Sent-via field for each To or CC)." | |||
| 328 | (make-local-variable 'paragraph-separate) | 328 | (make-local-variable 'paragraph-separate) |
| 329 | (make-local-variable 'paragraph-start) | 329 | (make-local-variable 'paragraph-start) |
| 330 | (setq paragraph-start (concat (regexp-quote mail-header-separator) | 330 | (setq paragraph-start (concat (regexp-quote mail-header-separator) |
| 331 | "$\\|[ \t]*[-_][-_][-_]+$\\|" | 331 | "$\\|[ \t]*[-_][-_][-_]+$\\|-- \\|" |
| 332 | paragraph-start)) | 332 | paragraph-start)) |
| 333 | (setq paragraph-separate (concat (regexp-quote mail-header-separator) | 333 | (setq paragraph-separate (concat (regexp-quote mail-header-separator) |
| 334 | "$\\|[ \t]*[-_][-_][-_]+$\\|" | 334 | "$\\|[ \t]*[-_][-_][-_]+$\\|-- \\|" |
| 335 | paragraph-separate)) | 335 | paragraph-separate)) |
| 336 | (run-hooks 'text-mode-hook 'mail-mode-hook)) | 336 | (run-hooks 'text-mode-hook 'mail-mode-hook)) |
| 337 | 337 | ||