diff options
| author | Boris Goldowsky | 1995-03-02 15:42:36 +0000 |
|---|---|---|
| committer | Boris Goldowsky | 1995-03-02 15:42:36 +0000 |
| commit | eb35ee41debcc2a6c7a3befdb70b8a9a7c74fc63 (patch) | |
| tree | f8122fc3a5d16f3c92ceb7a6f36cdb2f7d5cd270 | |
| parent | 690bc320aa789cdf41b7abbb8e4e76b90673ee52 (diff) | |
| download | emacs-eb35ee41debcc2a6c7a3befdb70b8a9a7c74fc63.tar.gz emacs-eb35ee41debcc2a6c7a3befdb70b8a9a7c74fc63.zip | |
(mail-mode): Remove ^ from paragraph-start & paragraph-separate.
| -rw-r--r-- | lisp/mail/sendmail.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index f20da2b44fa..633b7f4d3e2 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -296,11 +296,11 @@ C-c C-v mail-sent-via (add a sent-via field for each To or CC)." | |||
| 296 | (setq font-lock-defaults '(mail-font-lock-keywords t)) | 296 | (setq font-lock-defaults '(mail-font-lock-keywords t)) |
| 297 | (make-local-variable 'paragraph-separate) | 297 | (make-local-variable 'paragraph-separate) |
| 298 | (make-local-variable 'paragraph-start) | 298 | (make-local-variable 'paragraph-start) |
| 299 | (setq paragraph-start (concat "^" mail-header-separator | 299 | (setq paragraph-start (concat mail-header-separator |
| 300 | "$\\|^[ \t]*[-_][-_][-_]+$\\|" | 300 | "$\\|[ \t]*[-_][-_][-_]+$\\|" |
| 301 | paragraph-start)) | 301 | paragraph-start)) |
| 302 | (setq paragraph-separate (concat "^" mail-header-separator | 302 | (setq paragraph-separate (concat mail-header-separator |
| 303 | "$\\|^[ \t]*[-_][-_][-_]+$\\|" | 303 | "$\\|[ \t]*[-_][-_][-_]+$\\|" |
| 304 | paragraph-separate)) | 304 | paragraph-separate)) |
| 305 | (run-hooks 'text-mode-hook 'mail-mode-hook)) | 305 | (run-hooks 'text-mode-hook 'mail-mode-hook)) |
| 306 | 306 | ||