diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-10-26 18:08:22 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-10-26 18:11:50 -0400 |
commit | 41bc3b3e614487df4b5b5521b9b9c6d836a2d9ee (patch) | |
tree | a53ff20f9a3067c8537feae4e1fd909873c5654c | |
parent | c93b7f1908815d1e6741871c8b9979d0fbadae29 (diff) | |
download | emacs.d-41bc3b3e614487df4b5b5521b9b9c6d836a2d9ee.tar.gz |
magit-status-sections-hook: Update for new default
As of Magit's ebbf00b7 (Always show recent commits in the status
buffer, 2017-10-26), magit-insert-unpushed-to-upstream has been
replaced by magit-insert-unpushed-to-upstream-or-recent.
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1135,7 +1135,7 @@ (setq magit-status-sections-hook (append - (let ((funcs (list #'magit-insert-unpushed-to-upstream + (let ((funcs (list #'magit-insert-unpushed-to-upstream-or-recent #'magit-insert-unpushed-to-pushremote #'magit-insert-unpulled-from-pushremote #'magit-insert-unpulled-from-upstream))) |