Fix: tools/magit: +magit--kill-buffer function call corrected

This commit is contained in:
Benjamin Andresen 2018-04-12 00:41:38 +02:00
parent 460461ef54
commit 8917bc9194

View file

@ -16,7 +16,7 @@
(kill-buffer buf)
(with-current-buffer buf
(if (process-live-p process)
(run-with-timer 5 nil #'+magit--kill buf)
(run-with-timer 5 nil #'+magit--kill-buffer buf)
(kill-process process)
(kill-buffer buf)))))))