diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-12-23 19:30:47 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-12-24 00:25:22 -0500 |
commit | a14008e68fa886242c29a6fcb802315c1bf5d1e4 (patch) | |
tree | 7d0783a3655640c78efde93624d06f6f8b5cdc27 /lisp | |
parent | 0d58032ae7157d3ce8acfac3aad955a955f8172c (diff) | |
download | emacs.d-a14008e68fa886242c29a6fcb802315c1bf5d1e4.tar.gz |
km/magit-copy-as-kill: Adjust for recent upstream change
magit-copy-section-value gained an argument in 8e713d10
(magit-copy-section-value: Strip lines depending on sign of argument,
2020-12-21).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-magit.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/km-magit.el b/lisp/km-magit.el index 22c5769..3fb2255 100644 --- a/lisp/km-magit.el +++ b/lisp/km-magit.el @@ -1025,7 +1025,7 @@ function." (or (and (/= (prefix-numeric-value current-prefix-arg) -1) (run-hook-with-args-until-success 'km/magit-copy-functions current-prefix-arg)) - (magit-copy-section-value))) + (magit-copy-section-value nil))) ;;; GitHub links |