diff lisp/textmodes/texinfmt.el @ 6309:9217f29851c2

Don't use triple-hyphen in a character class.
author Karl Heuer <kwzh@gnu.org>
date Sat, 12 Mar 1994 00:23:12 +0000
parents eec34ce70181
children 0facf5c89fff
line wrap: on
line diff
--- a/lisp/textmodes/texinfmt.el	Fri Mar 11 23:38:27 1994 +0000
+++ b/lisp/textmodes/texinfmt.el	Sat Mar 12 00:23:12 1994 +0000
@@ -1882,9 +1882,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)