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

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

[nongnu] elpa/helm 0e2678498f 1/3: Skip dotted dirs in helm-directory-si


From: ELPA Syncer
Subject: [nongnu] elpa/helm 0e2678498f 1/3: Skip dotted dirs in helm-directory-size
Date: Mon, 24 Jul 2023 07:00:33 -0400 (EDT)

branch: elpa/helm
commit 0e2678498f7f52fa8d37454fa2b15859ab76ce2e
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    Skip dotted dirs in helm-directory-size
---
 helm-utils.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/helm-utils.el b/helm-utils.el
index b026f8237e..1ce8fa1d19 100644
--- a/helm-utils.el
+++ b/helm-utils.el
@@ -686,7 +686,9 @@ readable format,see `helm-file-human-size'."
                              directory
                              :path 'full
                              :directories t)
-                          (directory-files directory t))
+                          (directory-files
+                           directory t
+                           directory-files-no-dot-files-regexp))
            for file in files
            sum (nth 7 (file-attributes file)) into total
            finally return (if human



reply via email to

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