Function: makefile-browser-this-line-target-name
makefile-browser-this-line-target-name is a byte-compiled function
defined in make-mode.el.gz.
Signature
(makefile-browser-this-line-target-name)
Documentation
Extract the target name from a line in the browser.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/make-mode.el.gz
(defun makefile-browser-this-line-target-name ()
"Extract the target name from a line in the browser."
(save-excursion
(end-of-line)
(skip-chars-backward "^ \t")
(buffer-substring (point) (1- (line-end-position)))))