Mercurial > emacs
changeset 10886:7872c31968be
(nroff-mode): Remove ^ from paragraph-start & paragraph-separate.
author | Boris Goldowsky <boris@gnu.org> |
---|---|
date | Thu, 02 Mar 1995 15:32:57 +0000 |
parents | 13ce3a71c223 |
children | b808c61b7ee1 |
files | lisp/textmodes/nroff-mode.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 "\\\" ")