changeset 11306:9b907fb88921

(news-reply-mode): Make mail-header-separator into regexp
author Richard M. Stallman <rms@gnu.org>
date Sat, 08 Apr 1995 20:11:04 +0000
parents e39cb5447c68
children f6b6a67ff758
files lisp/mail/rnewspost.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/mail/rnewspost.el	Sat Apr 08 20:09:28 1995 +0000
+++ b/lisp/mail/rnewspost.el	Sat Apr 08 20:11:04 1995 +0000
@@ -132,9 +132,9 @@
   (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))