Function: hif-show-all
hif-show-all is an interactive and byte-compiled function defined in
hideif.el.gz.
Signature
(hif-show-all &optional START END)
Documentation
Show all of the text in the current buffer.
If there is a marked region from START to END it only shows the symbols within.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun hif-show-all (&optional start end)
"Show all of the text in the current buffer.
If there is a marked region from START to END it only shows the symbols within."
(interactive
(if (use-region-p)
(list (region-beginning) (region-end))
(list (point-min) (point-max))))
(hif-show-ifdef-region
(or start (point-min)) (or end (point-max))))