comparison lisp/textmodes/texinfo.el @ 1188:a6d32838af49

(texinfo-mode): Capitalize the mode name string.
author Richard M. Stallman <rms@gnu.org>
date Mon, 21 Sep 1992 18:32:59 +0000
parents 751a51860b29
children a52da8d63ff3
comparison
equal deleted inserted replaced
1187:519c04d69cdc 1188:a6d32838af49
216 216
217 Entering Texinfo mode calls the value of text-mode-hook, and then the 217 Entering Texinfo mode calls the value of text-mode-hook, and then the
218 value of texinfo-mode-hook." 218 value 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)
225 (make-local-variable 'require-final-newline) 225 (make-local-variable 'require-final-newline)
226 (setq require-final-newline t) 226 (setq require-final-newline t)