Merge pull request #527 from bandresen/tools/magit+magit--kill-buffer

Fix: tools/magit: +magit--kill-buffer function call corrected
This commit is contained in:
Henrik Lissner 2018-04-11 18:59:57 -04:00 committed by GitHub
commit 99a5215486
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)))))))