Mercurial > emacs
changeset 10896:d6c5619b7fbc
(texinfo-format-refill): Remove ^ from paragraph-start & paragraph-separate.
author | Boris Goldowsky <boris@gnu.org> |
---|---|
date | Thu, 02 Mar 1995 15:46:52 +0000 |
parents | 27b6776dc562 |
children | 09e80215057c |
files | lisp/textmodes/texinfmt.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/texinfmt.el Thu Mar 02 15:43:35 1995 +0000 +++ b/lisp/textmodes/texinfmt.el Thu Mar 02 15:46:52 1995 +0000 @@ -1916,9 +1916,9 @@ ;; 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)