# HG changeset patch # User Richard M. Stallman # Date 797371864 0 # Node ID 9b907fb8892144f4ca69bf4ff813360dd541c497 # Parent e39cb5447c6880a650ca6e44103c5fe06f864d06 (news-reply-mode): Make mail-header-separator into regexp diff -r e39cb5447c68 -r 9b907fb88921 lisp/mail/rnewspost.el --- 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))