diff options
| author | Richard M. Stallman | 1993-07-17 17:27:02 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-17 17:27:02 +0000 |
| commit | d78fc3154639e58309af40a316fa36d5bdd1b386 (patch) | |
| tree | 768c1e108502e693daaf5fdfe4a8a50ec4cc0e53 | |
| parent | 9f9c0e277f62de816a33c6f21148df0fdafe6710 (diff) | |
| download | emacs-d78fc3154639e58309af40a316fa36d5bdd1b386.tar.gz emacs-d78fc3154639e58309af40a316fa36d5bdd1b386.zip | |
(texinfo-mode): Undo changes mistakenly added with
previous batch: texinfo-{start,end}-of-header are now tex-...
| -rw-r--r-- | lisp/textmodes/texinfo.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 47f9d0e76e8..4cad729351a 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el | |||
| @@ -367,9 +367,9 @@ value of texinfo-mode-hook." | |||
| 367 | (setq comment-start-skip "@c +") | 367 | (setq comment-start-skip "@c +") |
| 368 | (make-local-variable 'words-include-escapes) | 368 | (make-local-variable 'words-include-escapes) |
| 369 | (setq words-include-escapes t) | 369 | (setq words-include-escapes t) |
| 370 | (make-local-variable 'texinfo-start-of-header) | 370 | (make-local-variable 'tex-start-of-header) |
| 371 | (setq tex-start-of-header "%**start") | 371 | (setq tex-start-of-header "%**start") |
| 372 | (make-local-variable 'texinfo-end-of-header) | 372 | (make-local-variable 'tex-end-of-header) |
| 373 | (setq tex-end-of-header "%**end") | 373 | (setq tex-end-of-header "%**end") |
| 374 | (run-hooks 'text-mode-hook 'texinfo-mode-hook)) | 374 | (run-hooks 'text-mode-hook 'texinfo-mode-hook)) |
| 375 | 375 | ||