From: Boris Goldowsky Date: Thu, 2 Mar 1995 15:48:20 +0000 (+0000) Subject: (texinfo-mode): Remove ^ from paragraph-start & paragraph-separate. X-Git-Tag: emacs-19.34~4961 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6e9f6940cc93c9ef9e3a8fded5b54d519d177910;p=emacs.git (texinfo-mode): Remove ^ from paragraph-start & paragraph-separate. --- diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index dbdd532a1d9..0045d3b9939 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -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)