diff options
author | Boris Goldowsky <boris@gnu.org> | 1995-03-01 15:43:27 +0000 |
---|---|---|
committer | Boris Goldowsky <boris@gnu.org> | 1995-03-01 15:43:27 +0000 |
commit | ac0e96eb6e7aab3368836af7ee78ed939248a04e (patch) | |
tree | 7ee909f38bfad376a06353710d600bc7f6943401 /lisp/textmodes | |
parent | 8e32e928fe0427307d4f0856de7b08ce578ec5f1 (diff) | |
download | emacs-ac0e96eb6e7aab3368836af7ee78ed939248a04e.tar.gz |
(bibtex-mode): Remove ^ from paragraph-start.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/bibtex.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 75881ef2681..cb0f6533a66 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -1238,7 +1238,7 @@ non-nil." (error "File %s not in $BIBINPUTS paths" filename))))) bibtex-string-files) (make-local-variable 'paragraph-start) - (setq paragraph-start "^[ \f\n\t]*$") + (setq paragraph-start "[ \f\n\t]*$") (make-local-variable 'comment-start) (setq comment-start "%") (auto-fill-mode 1) ; nice alignments |