Function: cvs-find-modif
cvs-find-modif is a byte-compiled function defined in pcvs.el.gz.
Signature
(cvs-find-modif FI)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun cvs-find-modif (fi)
(with-temp-buffer
(process-file cvs-program nil (current-buffer) nil
"-f" "diff" (cvs-fileinfo->file fi))
(goto-char (point-min))
(if (re-search-forward "^\\([0-9]+\\)" nil t)
(string-to-number (match-string 1))
1)))