Function: makefile-match-action

makefile-match-action is a byte-compiled function defined in make-mode.el.gz.

Signature

(makefile-match-action BOUND)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defun makefile-match-action (bound)
  (catch 'found
    (while (re-search-forward makefile-rule-action-regex bound t)
      (or (eq ?\\ (char-after (- (match-beginning 0) 2)))
	  (throw 'found t)))))