]> git.eshelyaron.com Git - emacs.git/commitdiff
(texinfo-format-region): Change `texinfo-[start
authorRichard M. Stallman <rms@gnu.org>
Thu, 11 Nov 1993 07:56:04 +0000 (07:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 11 Nov 1993 07:56:04 +0000 (07:56 +0000)
end]-of-header' to `tex-[start end]-of-header'.

lisp/textmodes/texinfmt.el

index b1992d7ca3e491d3b213bb87b6f005801f712057..9a1acee8c686b50f911e978e56d519e0b1491fb5 100644 (file)
@@ -24,7 +24,7 @@
 
 ;;; Emacs lisp functions to convert Texinfo files to Info files.
 
-(defvar texinfmt-version "2.30 of 18 May 1993")
+(defvar texinfmt-version "2.31 of 10 November 1993")
 \f
 ;;; Variable definitions
 
@@ -150,12 +150,12 @@ converted to Info is stored in a temporary buffer."
                  ;; Either copy header text.
                  (and 
                   (prog1 
-                      (search-forward texinfo-start-of-header search-end t)
+                      (search-forward tex-start-of-header search-end t)
                     (forward-line 1)
                     ;; Mark beginning of header.
                     (setq header-beginning (point)))
                   (prog1 
-                      (search-forward texinfo-end-of-header nil t)
+                      (search-forward tex-end-of-header nil t)
                     (beginning-of-line)
                     ;; Mark end of header
                     (setq header-end (point))))