aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-09-21 18:32:59 +0000
committerRichard M. Stallman1992-09-21 18:32:59 +0000
commitd7c9f762b50357e9c39e6d0f2ec57ac967c56d7a (patch)
tree2b3da06c09c5760110aa6aa5946bb5542f9c430b
parent09f119939b603b1bcc885df1dc8fbba62c9336fd (diff)
downloademacs-d7c9f762b50357e9c39e6d0f2ec57ac967c56d7a.tar.gz
emacs-d7c9f762b50357e9c39e6d0f2ec57ac967c56d7a.zip
(texinfo-mode): Capitalize the mode name string.
-rw-r--r--lisp/textmodes/texinfo.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index eb8a24749c1..f219b21f260 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -218,7 +218,7 @@ Entering Texinfo mode calls the value of text-mode-hook, and then the
218value of texinfo-mode-hook." 218value of texinfo-mode-hook."
219 (interactive) 219 (interactive)
220 (text-mode) 220 (text-mode)
221 (setq mode-name "texinfo") 221 (setq mode-name "Texinfo")
222 (setq major-mode 'texinfo-mode) 222 (setq major-mode 'texinfo-mode)
223 (use-local-map texinfo-mode-map) 223 (use-local-map texinfo-mode-map)
224 (set-syntax-table texinfo-mode-syntax-table) 224 (set-syntax-table texinfo-mode-syntax-table)