emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/bufferlo 7606ab19d5 1/2: Fix bufferlo--get-captured-buf


From: ELPA Syncer
Subject: [elpa] externals/bufferlo 7606ab19d5 1/2: Fix bufferlo--get-captured-buffers
Date: Fri, 20 Sep 2024 12:57:33 -0400 (EDT)

branch: externals/bufferlo
commit 7606ab19d575d3f95c8743e2c0244b39a3b2a947
Author: Florian Rommel <mail@florommel.de>
Commit: Florian Rommel <mail@florommel.de>

    Fix bufferlo--get-captured-buffers
    
    Previously, bufferlo--get-captured-buffers erroneously returned a
    non-flattened list of buffers, which broke bufferlo-kill-buffers and
    dependent functions.
---
 bufferlo.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bufferlo.el b/bufferlo.el
index 2365607927..4a87f21319 100644
--- a/bufferlo.el
+++ b/bufferlo.el
@@ -536,7 +536,7 @@ and ignore EXCLUDE-TABNUM."
                           (bufferlo--current-buffers f)))
                       (frame-list))))))
     (seq-uniq
-     (append (mapcar get-inactive-tabs-buffers (frame-list))
+     (append (seq-mapcat get-inactive-tabs-buffers (frame-list))
              (funcall get-frames-buffers)))))
 
 (defun bufferlo--get-orphan-buffers ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]