diff options
| author | Glenn Morris | 2014-01-21 21:01:40 -0500 |
|---|---|---|
| committer | Glenn Morris | 2014-01-21 21:01:40 -0500 |
| commit | 85a5f61f29516b4e3fa132976e8ea07f76d11cf1 (patch) | |
| tree | 636e42d1f3ea6a7e7b97e81a8717f140e2113adc | |
| parent | 213763c134afde8a1141fa633a81694c06ce28a7 (diff) | |
| download | emacs-85a5f61f29516b4e3fa132976e8ea07f76d11cf1.tar.gz emacs-85a5f61f29516b4e3fa132976e8ea07f76d11cf1.zip | |
* lisp/vc/vc-git.el (vc-git-print-log): Remove --follow;
reverts 2014-01-09 change.
Fixes: debbugs:16422
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc/vc-git.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b87d79bb573..4db7671a10b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2014-01-22 Glenn Morris <rgm@gnu.org> | 1 | 2014-01-22 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * vc/vc-git.el (vc-git-print-log): Remove --follow; | ||
| 4 | reverts 2014-01-09 change. (Bug#16422) | ||
| 5 | |||
| 3 | * calc/calc-embed.el (thing-at-point-looking-at): | 6 | * calc/calc-embed.el (thing-at-point-looking-at): |
| 4 | * emacs-lisp/map-ynp.el (x-popup-dialog): | 7 | * emacs-lisp/map-ynp.el (x-popup-dialog): |
| 5 | * obsolete/lmenu.el (x-popup-dialog): | 8 | * obsolete/lmenu.el (x-popup-dialog): |
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 6706300a377..06e46eeb663 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" "--follow") | 794 | '("log" "--no-color") |
| 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" |