diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-06-24 02:41:04 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-06-24 02:41:04 +0000 |
commit | f8bd9ac6ef4de2c88b90a6ada0f1d036d974ea5f (patch) | |
tree | 15bbe0c81b90924ddb26d3bd7a23e154875aad7e /lisp/vc-bzr.el | |
parent | f245f2c6109b9700d614937eb3a19cc24026fa15 (diff) | |
download | emacs-f8bd9ac6ef4de2c88b90a6ada0f1d036d974ea5f.tar.gz |
* 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.
Diffstat (limited to 'lisp/vc-bzr.el')
-rw-r--r-- | lisp/vc-bzr.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el index 70704dc4d5e..64cc8ade8aa 100644 --- a/lisp/vc-bzr.el +++ b/lisp/vc-bzr.el @@ -536,6 +536,8 @@ property containing author and date information." (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))) |