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 only going to line-beginning if match found
(if (re-search-backward hif-ifx-else-endif-regexp (point-min) t)
(beginning-of-line)))