+2008-06-24 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
+ * vc-rcs.el (vc-annotate-convert-time):
+ * vc-mtn.el (vc-annotate-convert-time):
+ * vc-git.el (vc-annotate-convert-time):
+ * vc-cvs.el (vc-annotate-convert-time):
+ * vc-bzr.el (vc-annotate-convert-time): Declare as functions.
+
2008-06-23 Dan Nicolaescu <dann@ics.uci.edu>
* vc-annotate.el (vc-annotate-mode): Derive from special-mode
(replace-match "")
(insert tag " |")))))
+(declare-function vc-annotate-convert-time "vc-annotate" (time))
+
(defun vc-bzr-annotate-time ()
(when (re-search-forward "^ *[0-9.]+ +|" nil t)
(let ((prop (get-text-property (line-beginning-position) 'help-echo)))
(re-search-forward vc-cvs-annotate-first-line-re)
(delete-region (point-min) (1- (point)))))))
+(declare-function vc-annotate-convert-time "vc-annotate" (time))
+
(defun vc-cvs-annotate-current-time ()
"Return the current time, based at midnight of the current day, and
encoded as fractional days."
(let ((name (file-relative-name file)))
(vc-git-command buf 0 name "blame" (if rev (concat "-r" rev)))))
+(declare-function vc-annotate-convert-time "vc-annotate" (time))
+
(defun vc-git-annotate-time ()
(and (re-search-forward "[0-9a-f]+[^()]+(.* \\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\) \\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\) \\([-+0-9]+\\) +[0-9]+) " nil t)
(vc-annotate-convert-time
(re-search-forward "^[ \t]*[0-9]")
(delete-region (point-min) (match-beginning 0))))
+(declare-function vc-annotate-convert-time "vc-annotate" (time))
;; The format for one line output by "hg annotate -d -n" looks like this:
;;215 Wed Jun 20 21:22:58 2007 -0700: CONTENTS
rename-state ;; rename or copy state
extra-name) ;; original name for copies and rename targets, new name for
+(declare-function vc-default-status-printer "vc-dir" (backend fileentry))
+
(defun vc-hg-status-printer (info)
"Pretty-printer for the vc-dir-fileinfo structure."
(let ((extra (vc-dir-fileinfo->extra info)))
(apply 'vc-mtn-command buf 0 file "annotate"
(if rev (list "-r" rev))))
+(declare-function vc-annotate-convert-time "vc-annotate" (time))
+
(defconst vc-mtn-annotate-full-re
"^ *\\([0-9a-f]+\\)\\.* by [^ ]+ \\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\): ")
(defconst vc-mtn-annotate-any-re
(insert (gethash (get-text-property (point) :vc-rcs-r/d/a) ht))
(forward-line 1))))
+(declare-function vc-annotate-convert-time "vc-annotate" (time))
+
(defun vc-rcs-annotate-current-time ()
"Return the current time, based at midnight of the current day, and
encoded as fractional days."