Variable: Info-mode-hook

Info-mode-hook is a customizable variable defined in info.el.gz.

Value

(turn-on-font-lock)

Documentation

Hook run when activating Info Mode.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(defcustom Info-mode-hook
  ;; Try to obey obsolete Info-fontify settings.
  (unless (and (boundp 'Info-fontify) (null Info-fontify))
    '(turn-on-font-lock))
  "Hook run when activating Info Mode."
  :type 'hook)