summaryrefslogtreecommitdiff
path: root/lisp/textmodes
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
commit03ca94565c76c0f3b63638ec5230b236c63bd791 (patch)
tree4a422701cf62d2c0c53abf79b159d809cfe81940 /lisp/textmodes
parentb0ebb85644a55e35907958161c494e96dea1a5e1 (diff)
downloademacs-03ca94565c76c0f3b63638ec5230b236c63bd791.tar.gz
(makeinfo-region): Fix name of tex-start/end-of-header.
Diffstat (limited to 'lisp/textmodes')
-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))))