Function: allout-unload-function

allout-unload-function is a byte-compiled function defined in allout.el.gz.

Signature

(allout-unload-function)

Documentation

Unload the allout outline library.

Source Code

;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_  > allout-unload-function
(defun allout-unload-function ()
  "Unload the allout outline library."
  (save-current-buffer
    (dolist (buffer (buffer-list))
      (set-buffer buffer)
      (when (allout-mode-p) (allout-mode -1))))
  ;; continue standard unloading
  nil)