diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-08-03 21:43:00 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-08-03 21:43:00 -0400 |
commit | 47027856ac6d96b693a14a3aee4b1f977442ff97 (patch) | |
tree | 48fcfe6c28d34420a3799715526ddd09fcbd45d8 | |
parent | acb46b23fbd85417d337d5c4388671a7a4423177 (diff) | |
download | emacs.d-47027856ac6d96b693a14a3aee4b1f977442ff97.tar.gz |
notmuch-show-pr-in-magit: Pass default log arguments
-rw-r--r-- | lisp/km-mail.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/km-mail.el b/lisp/km-mail.el index 8511326..5701c8b 100644 --- a/lisp/km-mail.el +++ b/lisp/km-mail.el @@ -130,7 +130,9 @@ in the remote's \".git/config\" entry." (when (or force-fetch (not (magit-ref-exists-p local-ref))) (magit-call-git "fetch" remote)) - (magit-log (list (concat base-ref ".." local-ref))))) + (apply #'magit-log + (list (concat base-ref ".." local-ref)) + (magit-log-arguments)))) ;;;###autoload (defun km/notmuch-search () |