[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm 7db0b0381d 1/4: Docstring fixes only
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm 7db0b0381d 1/4: Docstring fixes only |
Date: |
Mon, 29 Jan 2024 13:00:25 -0500 (EST) |
branch: elpa/helm
commit 7db0b0381dd31969561d10f8005beebae6f8cd5b
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Docstring fixes only
---
helm-buffers.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/helm-buffers.el b/helm-buffers.el
index fd040850ef..7248e67e2b 100644
--- a/helm-buffers.el
+++ b/helm-buffers.el
@@ -379,7 +379,7 @@ Note that this variable is buffer-local.")
(defun helm-buffers-get-visible-buffers ()
- "Returns buffers visibles on current frame."
+ "Returns buffers visible on visible frames."
(let (result)
(walk-windows
(lambda (x)
@@ -388,6 +388,7 @@ Note that this variable is buffer-local.")
result))
(defun helm-buffer-list-1 (&optional visibles)
+ "Return list of all buffers except VISIBLES buffers."
(cl-loop for b in (buffer-list)
for bn = (buffer-name b)
unless (member bn visibles)