summaryrefslogtreecommitdiff
path: root/lisp/textmodes/makeinfo.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-12 14:58:14 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-12 14:58:14 +0000
commit86c57d9f8c40c79c7718154d1bd71e397b1f3b0b (patch)
tree54ec2f88a62a71381a6b424bda5cc7e65e469384 /lisp/textmodes/makeinfo.el
parentc78f294b50064d109e88e188579f979008e7b73d (diff)
downloademacs-86c57d9f8c40c79c7718154d1bd71e397b1f3b0b.tar.gz
(makeinfo-region): Fix name of tex-start/end-of-header.
Diffstat (limited to 'lisp/textmodes/makeinfo.el')
-rw-r--r--lisp/textmodes/makeinfo.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/makeinfo.el b/lisp/textmodes/makeinfo.el
index 58a1be1e9b1..61269de9e2c 100644
--- a/lisp/textmodes/makeinfo.el
+++ b/lisp/textmodes/makeinfo.el
@@ -112,12 +112,12 @@ command to gain use of `next-error'."
(goto-char (point-min))
(if (and
(prog1
- (search-forward texinfo-start-of-header search-end t)
+ (search-forward tex-start-of-header search-end t)
(beginning-of-line)
;; Mark beginning of header.
(setq filename-or-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 filename-or-header-end (point))))