Function: hif-find-next-relevant

hif-find-next-relevant is a byte-compiled function defined in hideif.el.gz.

Signature

(hif-find-next-relevant)

Documentation

Move to next #if..., #elif..., #else, or #endif, after the current line.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun hif-find-next-relevant ()
  "Move to next #if..., #elif..., #else, or #endif, after the current line."
  ;; (message "hif-find-next-relevant at %d" (point))
  (end-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))