# HG changeset patch # User Boris Goldowsky # Date 794159300 0 # Node ID 09e80215057ceb0cc3fe553590d50df301a58ce8 # Parent d6c5619b7fbcff2454d9a0aae810c6431f23e703 (texinfo-mode): Remove ^ from paragraph-start & paragraph-separate. diff -r d6c5619b7fbc -r 09e80215057c lisp/textmodes/texinfo.el --- a/lisp/textmodes/texinfo.el Thu Mar 02 15:46:52 1995 +0000 +++ b/lisp/textmodes/texinfo.el Thu Mar 02 15:48:20 1995 +0000 @@ -374,9 +374,9 @@ (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)