From 0608d57e5caa002f56163118db0c94133268d84e Mon Sep 17 00:00:00 2001 From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:32:57 +0000 Subject: [PATCH] (nroff-mode): Remove ^ from paragraph-start & paragraph-separate. --- lisp/textmodes/nroff-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el index 9674c362efb..b3258f38e11 100644 --- a/lisp/textmodes/nroff-mode.el +++ b/lisp/textmodes/nroff-mode.el @@ -71,9 +71,9 @@ closing requests for requests that are used in matched pairs." (make-local-variable 'page-delimiter) (setq page-delimiter "^\\.\\(bp\\|SK\\|OP\\)") (make-local-variable 'paragraph-start) - (setq paragraph-start (concat "^[.']\\|" paragraph-start)) + (setq paragraph-start (concat "[.']\\|" paragraph-start)) (make-local-variable 'paragraph-separate) - (setq paragraph-separate (concat "^[.']\\|" paragraph-separate)) + (setq paragraph-separate (concat "[.']\\|" paragraph-separate)) ;; comment syntax added by mit-erl!gildea 18 Apr 86 (make-local-variable 'comment-start) (setq comment-start "\\\" ") -- 2.39.5