(texinfo-mode): Remove ^ from paragraph-start & paragraph-separate.
authorBoris Goldowsky <boris@gnu.org>
Thu, 2 Mar 1995 15:48:20 +0000 (15:48 +0000)
committerBoris Goldowsky <boris@gnu.org>
Thu, 2 Mar 1995 15:48:20 +0000 (15:48 +0000)
lisp/textmodes/texinfo.el

index dbdd532..0045d3b 100644 (file)
@@ -374,9 +374,9 @@ value of texinfo-mode-hook."
   (make-local-variable 'indent-tabs-mode)
   (setq indent-tabs-mode nil)
   (make-local-variable 'paragraph-separate)
-  (setq paragraph-separate (concat "^\b\\|^@[a-zA-Z]*[ \n]\\|" paragraph-separate))
+  (setq paragraph-separate (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-separate))
   (make-local-variable 'paragraph-start)
-  (setq paragraph-start (concat "^\b\\|^@[a-zA-Z]*[ \n]\\|" paragraph-start))
+  (setq paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start))
   (make-local-variable 'fill-column)
   (setq fill-column 72)
   (make-local-variable 'comment-start)