Function: show-ifdefs

show-ifdefs is an interactive and byte-compiled function defined in hideif.el.gz.

Signature

(show-ifdefs &optional START END)

Documentation

Cancel the effects of hide-ifdef: show the contents of all #ifdefs.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun show-ifdefs (&optional start end)
  "Cancel the effects of `hide-ifdef': show the contents of all #ifdefs."
  (interactive
   (if (use-region-p)
       (list (region-beginning) (region-end))
     (list (point-min) (point-max))))
  (setq buffer-read-only hif-outside-read-only)
  (hif-show-all (or start (point-min)) (or end (point-max)))
  (setq hide-ifdef-hiding nil))