fix(vc-gutter): wrong-number-of-args error
A regression introduced inded3f5e
. Fix: #8009 Amend:ded3f5ec83
This commit is contained in:
parent
ff9c59df46
commit
aa8c31cf08
1 changed files with 3 additions and 2 deletions
|
@ -190,6 +190,7 @@ Respects `diff-hl-disable-on-remote'."
|
||||||
;; HACK: This advice won't work in *all* cases (it's a C function, and any
|
;; HACK: This advice won't work in *all* cases (it's a C function, and any
|
||||||
;; calls to it from C won't trigger advice), but the thread issues above are
|
;; calls to it from C won't trigger advice), but the thread issues above are
|
||||||
;; triggered from Elisp's buffer API (from what I can tell).
|
;; triggered from Elisp's buffer API (from what I can tell).
|
||||||
(defadvice! +vc-gutter--kill-diff-hl-thread-a (buf)
|
(defadvice! +vc-gutter--kill-diff-hl-thread-a (&optional buf)
|
||||||
:before #'kill-buffer
|
:before #'kill-buffer
|
||||||
(with-current-buffer buf (+vc-gutter--kill-thread t))))
|
(with-current-buffer (or buf (current-buffer))
|
||||||
|
(+vc-gutter--kill-thread t))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue