From 139a0c8045cf294f38418cab5d5899cefab4cb91 Mon Sep 17 00:00:00 2001 From: Sergey Trofimov Date: Sat, 10 Feb 2018 19:36:06 +0300 Subject: [PATCH] Fix kill-buffer arguments. --- core/autoload/buffers.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/autoload/buffers.el b/core/autoload/buffers.el index c5e06c209..5e4da2e4f 100644 --- a/core/autoload/buffers.el +++ b/core/autoload/buffers.el @@ -170,7 +170,7 @@ If DERIVED-P, test with `derived-mode-p', otherwise use `eq'." regex PATTERN. Returns the number of killed buffers." (let ((buffers (doom-matching-buffers pattern buffer-list))) (dolist (buf buffers (length buffers)) - (kill-buffer buf t)))) + (kill-buffer buf)))) ;;