1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00

(texinfo-format-region): Change `texinfo-[start

end]-of-header' to `tex-[start end]-of-header'.
This commit is contained in:
Richard M. Stallman 1993-11-11 07:56:04 +00:00
parent bb946175c2
commit 9dc96d324c

View 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")
;;; 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))))