summaryrefslogtreecommitdiff
path: root/lisp/mail
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-04-08 20:11:04 +0000
committerRichard M. Stallman <rms@gnu.org>1995-04-08 20:11:04 +0000
commit6767a826d17cfecb70326a47a9762caaff50ba23 (patch)
tree7a78ac5e75fc70455c0c9f9cd1f03e1a256d2b3d /lisp/mail
parentb9e96b7ae92d000dc407a494fef7fe3b96d6a1fe (diff)
downloademacs-6767a826d17cfecb70326a47a9762caaff50ba23.tar.gz
(news-reply-mode): Make mail-header-separator into regexp
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/rnewspost.el4
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)."
(setq mode-name "News Reply")
(make-local-variable 'paragraph-separate)
(make-local-variable 'paragraph-start)
- (setq paragraph-start (concat mail-header-separator "$\\|"
+ (setq paragraph-start (concat (regexp-quote mail-header-separator) "$\\|"
paragraph-start))
- (setq paragraph-separate (concat mail-header-separator "$\\|"
+ (setq paragraph-separate (concat (regexp-quote mail-header-separator) "$\\|"
paragraph-separate))
(run-hooks 'text-mode-hook 'news-reply-mode-hook))