Mercurial > emacs
diff lisp/textmodes/makeinfo.el @ 6828:cccf812ed4f2
(makeinfo-region): Fix name of tex-start/end-of-header.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 12 Apr 1994 14:58:14 +0000 |
| parents | 2a4dc4339df4 |
| children | 84acc3adcd63 |
line wrap: on
line diff
--- a/lisp/textmodes/makeinfo.el Tue Apr 12 07:36:44 1994 +0000 +++ b/lisp/textmodes/makeinfo.el Tue Apr 12 14:58:14 1994 +0000 @@ -112,12 +112,12 @@ (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))))
