branch: elpa/helm
commit 7db0b0381dd31969561d10f8005beebae6f8cd5b
Author: Thierry Volpiatto <thie...@posteo.net>
Commit: Thierry Volpiatto <thie...@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)

Reply via email to