Function: outline-show-all

outline-show-all is an interactive and byte-compiled function defined in outline.el.gz.

Signature

(outline-show-all)

Documentation

Show all of the text in the buffer.

View in manual

Key Bindings

Aliases

show-all (obsolete since 25.1)

Source Code

;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline-show-all ()
  "Show all of the text in the buffer."
  (interactive)
  (outline-flag-region (point-min) (point-max) nil))