Function: allout-find-file-hook
allout-find-file-hook is a byte-compiled function defined in
allout.el.gz.
Signature
(allout-find-file-hook)
Documentation
Activate allout-mode(var)/allout-mode(fun) on non-nil allout-auto-activation, allout-layout.
See allout-auto-activation for setup instructions.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-find-file-hook ()
(defun allout-find-file-hook ()
"Activate `allout-mode' on non-nil `allout-auto-activation', `allout-layout'.
See `allout-auto-activation' for setup instructions."
(if (and allout-auto-activation
(not (allout-mode-p))
allout-layout)
(allout-mode)))