summaryrefslogtreecommitdiff
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorMagnus Henoch <mange@freemail.hu>2008-07-02 11:56:11 +0000
committerMagnus Henoch <mange@freemail.hu>2008-07-02 11:56:11 +0000
commit1f8da6df7d15ee9eb08329526158926f459eee79 (patch)
tree96a444da69f1f41adf8e43d7c598a028487e4241 /lisp/vc-git.el
parentd1ce47b068062c1d6373e5add5abfbab0114ccb3 (diff)
downloademacs-1f8da6df7d15ee9eb08329526158926f459eee79.tar.gz
2008-07-02 Magnus Henoch <mange@freemail.hu>
* vc-git.el (vc-git-annotate-command): Use proper option for specifying revision.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r--lisp/vc-git.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 4c004dd1e35..842d7135448 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -539,9 +539,8 @@ or BRANCH^ (where \"^\" can be repeated)."
table))
(defun vc-git-annotate-command (file buf &optional rev)
- ;; FIXME: rev is ignored
(let ((name (file-relative-name file)))
- (vc-git-command buf 0 name "blame" (if rev (concat "-r" rev)))))
+ (vc-git-command buf 0 name "blame" rev)))
(declare-function vc-annotate-convert-time "vc-annotate" (time))