Function: hif-find-previous-relevant
hif-find-previous-relevant is a byte-compiled function defined in
hideif.el.gz.
Signature
(hif-find-previous-relevant)
Documentation
Move to previous #if..., #else, or #endif, before the current line.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun hif-find-previous-relevant ()
"Move to previous #if..., #else, or #endif, before the current line."
;; (message "hif-find-previous-relevant at %d" (point))
(beginning-of-line)
;; Avoid infinite recursion by going to the pattern only if a match is found
(hif-search-ifX-regexp hif-ifx-else-endif-regexp 't))