Function: allout-show-all
allout-show-all is an interactive and byte-compiled function defined
in allout.el.gz.
Signature
(allout-show-all)
Documentation
Show all of the text in the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ - Region and beyond
;;;_ > allout-show-all ()
(defun allout-show-all ()
"Show all of the text in the buffer."
(interactive)
(message "Exposing entire buffer...")
(allout-flag-region (point-min) (point-max) nil)
(message "Exposing entire buffer... Done."))