# HG changeset patch # User Magnus Henoch # Date 1214999771 0 # Node ID 5b7442d7d9ce11a34f4b15f050860a19d047c123 # Parent 7369ded3b4363a7e72eced6f7239288376fc7b5d 2008-07-02 Magnus Henoch * vc-git.el (vc-git-annotate-command): Use proper option for specifying revision. diff -r 7369ded3b436 -r 5b7442d7d9ce lisp/ChangeLog --- a/lisp/ChangeLog Wed Jul 02 11:14:38 2008 +0000 +++ b/lisp/ChangeLog Wed Jul 02 11:56:11 2008 +0000 @@ -1,3 +1,8 @@ +2008-07-02 Magnus Henoch + + * vc-git.el (vc-git-annotate-command): Use proper option for + specifying revision. + 2008-07-02 Francesc Rocher * startup.el (fancy-splash-head): Prefer SVG or PNG splash image, diff -r 7369ded3b436 -r 5b7442d7d9ce lisp/vc-git.el --- a/lisp/vc-git.el Wed Jul 02 11:14:38 2008 +0000 +++ b/lisp/vc-git.el Wed Jul 02 11:56:11 2008 +0000 @@ -539,9 +539,8 @@ 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))