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-hg.el | |
parent | f245f2c6109b9700d614937eb3a19cc24026fa15 (diff) | |
download | emacs-f8bd9ac6ef4de2c88b90a6ada0f1d036d974ea5f.tar.gz emacs-f8bd9ac6ef4de2c88b90a6ada0f1d036d974ea5f.tar.bz2 emacs-f8bd9ac6ef4de2c88b90a6ada0f1d036d974ea5f.zip |
* 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-hg.el')
-rw-r--r-- | lisp/vc-hg.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/vc-hg.el b/lisp/vc-hg.el index 663609d39b3..2f738303a19 100644 --- a/lisp/vc-hg.el +++ b/lisp/vc-hg.el @@ -289,6 +289,7 @@ Optional arg REVISION is a revision to annotate from." (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 @@ -425,6 +426,8 @@ REV is the revision to check out into WORKFILE." 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))) |