# HG changeset patch # User Boris Goldowsky # Date 794158377 0 # Node ID 7872c31968be9ed328538f29fabb378bdc6301c7 # Parent 13ce3a71c223b09d292f1c0420df54f3abaa75f7 (nroff-mode): Remove ^ from paragraph-start & paragraph-separate. diff -r 13ce3a71c223 -r 7872c31968be lisp/textmodes/nroff-mode.el --- a/lisp/textmodes/nroff-mode.el Thu Mar 02 15:31:55 1995 +0000 +++ b/lisp/textmodes/nroff-mode.el Thu Mar 02 15:32:57 1995 +0000 @@ -71,9 +71,9 @@ (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 "\\\" ")