diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-11-09 16:51:42 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-11-09 16:51:42 -0500 |
commit | 7ce94c076df0e8fe13d381125da4baca1b7b49c0 (patch) | |
tree | 55f52988a8826f5cb484874dae6d32f93465c16a /lisp | |
parent | 873fd23306cb004c17cc4304dd68118f675682fc (diff) | |
download | emacs.d-7ce94c076df0e8fe13d381125da4baca1b7b49c0.tar.gz |
Update magit-log-all-branches for upstream changes
Magit has removed magit-log-dwim [1] and changed the arguments to
magit-log-read-args [2].
[1] e0979bb6bd22a9ce5009a7cdf458034e52817da3
[2] 5737de048843bbad83f16ea13f57d69cdbe6971e
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-git.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el index 95e05da..5da58a6 100644 --- a/lisp/init-git.el +++ b/lisp/init-git.el @@ -77,9 +77,9 @@ requiring confirmation. (magit-run-git-async "push" "-v" remote "--all"))) (defun km/magit-log-all-branches (range &optional args) - (interactive (magit-log-read-args t nil)) + (interactive (magit-log-read-args t)) (add-to-list 'args "--all") - (magit-log-dwim range args)) + (magit-log range args)) (defun km/magit-checkout-local-tracking (remote-branch) "Create and checkout a local tracking branch for REMOTE-BRANCH. |