]> git.eshelyaron.com Git - emacs.git/commitdiff
(nroff-mode): Remove ^ from paragraph-start & paragraph-separate.
authorBoris Goldowsky <boris@gnu.org>
Thu, 2 Mar 1995 15:32:57 +0000 (15:32 +0000)
committerBoris Goldowsky <boris@gnu.org>
Thu, 2 Mar 1995 15:32:57 +0000 (15:32 +0000)
lisp/textmodes/nroff-mode.el

index 9674c362efb8f20e6615d101ed69eec051de1c5d..b3258f38e11773515cc5e0f2c240521465541089 100644 (file)
@@ -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 "\\\" ")