Variable: blackbox-mode-hook
blackbox-mode-hook is a variable defined in blackbox.el.gz.
Value
nil
Documentation
Hook run after entering Blackbox 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/play/blackbox.el.gz
;; Blackbox mode is suitable only for specially formatted data.
(define-derived-mode blackbox-mode special-mode "Blackbox"
"Major mode for playing blackbox.
To learn how to play blackbox, see the documentation for function `blackbox'.
The usual mnemonic keys move the cursor around the box.
\\<blackbox-mode-map>\\[bb-bol] and \\[bb-eol] move to the beginning and end of line, respectively.
\\[bb-romp] -- send in a ray from point, or toggle a ball at point
\\[bb-done] -- end game and get score"
(setq truncate-lines t))