diff options
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r-- | lisp/vc-git.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 4a5b7ab8403..2293f275910 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -542,6 +542,8 @@ or BRANCH^ (where \"^\" can be repeated)." (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 |