summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorBoris Goldowsky <boris@gnu.org>1995-03-02 15:46:52 +0000
committerBoris Goldowsky <boris@gnu.org>1995-03-02 15:46:52 +0000
commit886f1656979cb0d2acdf67b314f417ae18e74ff4 (patch)
treec43aaca292510ebd20bfe769848ed520e5d0f28f /lisp
parentc53857e9b2b6d9054183669945140bb88cf892b2 (diff)
downloademacs-886f1656979cb0d2acdf67b314f417ae18e74ff4.tar.gz
emacs-886f1656979cb0d2acdf67b314f417ae18e74ff4.tar.bz2
emacs-886f1656979cb0d2acdf67b314f417ae18e74ff4.zip
(texinfo-format-refill): Remove ^ from paragraph-start & paragraph-separate.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/texinfmt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el
index d9cfffb3fd6..69967c5ba12 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -1916,9 +1916,9 @@ Default is to leave paragraph indentation as is."
;; are used to underline it. This could occur if the line following
;; the underlining is not an index entry and has text within it.
(let* ((previous-paragraph-separate paragraph-separate)
- (paragraph-separate (concat paragraph-separate "\\|^[-=*.]+"))
+ (paragraph-separate (concat paragraph-separate "\\|[-=*.]+"))
(previous-paragraph-start paragraph-start)
- (paragraph-start (concat paragraph-start "\\|^[-=*.]+")))
+ (paragraph-start (concat paragraph-start "\\|[-=*.]+")))
(unwind-protect
(fill-paragraph nil)
(setq paragraph-separate previous-paragraph-separate)