Function: makefile-next-dependency
makefile-next-dependency is an interactive and byte-compiled function
defined in make-mode.el.gz.
Signature
(makefile-next-dependency)
Documentation
Move point to the beginning of the next dependency line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
;;; Motion code.
(defun makefile-next-dependency ()
"Move point to the beginning of the next dependency line."
(interactive)
(let ((here (point)))
(end-of-line)
(if (makefile-match-dependency nil)
(progn (beginning-of-line) t) ; indicate success
(goto-char here) nil)))