aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond2014-01-09 11:46:56 -0500
committerEric S. Raymond2014-01-09 11:46:56 -0500
commitf29778b343bc352a550033ab3d3e19e5a3ba677a (patch)
treeed20345c8f0f1c09ec0d41568591c6e8183dd266
parenta7fecaa0c5f8247c3b3747506201ec2a2ecbe292 (diff)
downloademacs-f29778b343bc352a550033ab3d3e19e5a3ba677a.tar.gz
emacs-f29778b343bc352a550033ab3d3e19e5a3ba677a.zip
Minor bug fix.
Fixes: debbugs:8756
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/vc/vc-git.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 481c3cbc04a..fa07f2ded55 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
1<<<<<<< TREE
22014-01-09 Eric S. Raymond <esr@thyrsus.com>
3
4 * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
5 following renames and addressing Debian bug 8756.
6
12014-01-09 Stefan Monnier <monnier@iro.umontreal.ca> 72014-01-09 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update 9 * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index 06e46eeb663..6706300a377 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -791,7 +791,7 @@ If LIMIT is non-nil, show no more than this many entries."
791 (apply 'vc-git-command buffer 791 (apply 'vc-git-command buffer
792 'async files 792 'async files
793 (append 793 (append
794 '("log" "--no-color") 794 '("log" "--no-color" "--follow")
795 (when shortlog 795 (when shortlog
796 `("--graph" "--decorate" "--date=short" 796 `("--graph" "--decorate" "--date=short"
797 ,(format "--pretty=tformat:%s" 797 ,(format "--pretty=tformat:%s"