aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2009-09-06 22:08:31 +0000
committerNick Roberts2009-09-06 22:08:31 +0000
commit2f1c4cd0684c8409969a214413857c6fc750f516 (patch)
treeb0a06d0bb1fd5946a1e3b060cd666dff90480c24
parent76ff67bfc5c8f90114b9d983f11d673b3710431e (diff)
downloademacs-2f1c4cd0684c8409969a214413857c6fc750f516.tar.gz
emacs-2f1c4cd0684c8409969a214413857c6fc750f516.zip
(vc-git-annotate-command): Use separator to parse
arguments correctly.
-rw-r--r--lisp/vc-git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 3be88e1f80a..d4b65127c3c 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -566,7 +566,7 @@ or BRANCH^ (where \"^\" can be repeated)."
566 566
567(defun vc-git-annotate-command (file buf &optional rev) 567(defun vc-git-annotate-command (file buf &optional rev)
568 (let ((name (file-relative-name file))) 568 (let ((name (file-relative-name file)))
569 (vc-git-command buf 'async name "blame" "--date=iso" rev))) 569 (vc-git-command buf 'async name "blame" "--date=iso" rev "--")))
570 570
571(declare-function vc-annotate-convert-time "vc-annotate" (time)) 571(declare-function vc-annotate-convert-time "vc-annotate" (time))
572 572