Variable: chart-mode-hook
chart-mode-hook is a variable defined in chart.el.gz.
Value
nil
Documentation
Hook run after entering Chart mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/chart.el.gz
(define-derived-mode chart-mode special-mode "Chart"
"Define a mode in Emacs for displaying a chart."
(buffer-disable-undo)
(setq-local font-lock-global-modes nil)
(font-lock-mode -1) ;Isn't it off already? --Stef
)