Function: down-ifdef

down-ifdef is an interactive and byte-compiled function defined in hideif.el.gz.

Signature

(down-ifdef)

Documentation

Move point to beginning of nested ifdef or else-part.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun down-ifdef ()
  "Move point to beginning of nested ifdef or else-part."
    (interactive)
    (let ((start (point)))
      (hif-find-next-relevant)
      (if (or (hif-looking-at-ifX) (hif-looking-at-else))
	  ()
	(goto-char start)
	(error "No following #ifdef"))))