From ab0fbbe9d6ee88e187de9aafb5e60740c25d03cb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 8 Apr 1995 20:11:04 +0000 Subject: [PATCH] (news-reply-mode): Make mail-header-separator into regexp --- lisp/mail/rnewspost.el | 4 ++-- 1 file 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)) -- 2.39.5