From 8917bc9194481b6d25011715c92fba1b568d243b Mon Sep 17 00:00:00 2001 From: Benjamin Andresen Date: Thu, 12 Apr 2018 00:41:38 +0200 Subject: [PATCH] Fix: tools/magit: +magit--kill-buffer function call corrected --- modules/tools/magit/autoload.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tools/magit/autoload.el b/modules/tools/magit/autoload.el index a3fc5edf7..c99088050 100644 --- a/modules/tools/magit/autoload.el +++ b/modules/tools/magit/autoload.el @@ -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)))))))