diff options
| -rw-r--r-- | lisp/mail/rnewspost.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/rnewspost.el b/lisp/mail/rnewspost.el index 122d64d3e86..cb8d1028342 100644 --- a/lisp/mail/rnewspost.el +++ b/lisp/mail/rnewspost.el | |||
| @@ -132,9 +132,9 @@ C-c C-r caesar rotate all letters by 13 places in the article's body (rot13)." | |||
| 132 | (setq mode-name "News Reply") | 132 | (setq mode-name "News Reply") |
| 133 | (make-local-variable 'paragraph-separate) | 133 | (make-local-variable 'paragraph-separate) |
| 134 | (make-local-variable 'paragraph-start) | 134 | (make-local-variable 'paragraph-start) |
| 135 | (setq paragraph-start (concat mail-header-separator "$\\|" | 135 | (setq paragraph-start (concat (regexp-quote mail-header-separator) "$\\|" |
| 136 | paragraph-start)) | 136 | paragraph-start)) |
| 137 | (setq paragraph-separate (concat mail-header-separator "$\\|" | 137 | (setq paragraph-separate (concat (regexp-quote mail-header-separator) "$\\|" |
| 138 | paragraph-separate)) | 138 | paragraph-separate)) |
| 139 | (run-hooks 'text-mode-hook 'news-reply-mode-hook)) | 139 | (run-hooks 'text-mode-hook 'news-reply-mode-hook)) |
| 140 | 140 | ||