Function: vc-parse-buffer
vc-parse-buffer is a byte-compiled function defined in vc-hooks.el.gz.
Signature
(vc-parse-buffer PATTERN I)
Documentation
Find PATTERN in the current buffer and return its Ith submatch.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-hooks.el.gz
(defsubst vc-parse-buffer (pattern i)
"Find PATTERN in the current buffer and return its Ith submatch."
(goto-char (point-min))
(if (re-search-forward pattern nil t)
(match-string i)))