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

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

[elpa] master 4118834 207/215: Suppress irrelevant compilation warnings


From: Rocky Bernstein
Subject: [elpa] master 4118834 207/215: Suppress irrelevant compilation warnings
Date: Sat, 30 Jul 2016 14:49:06 +0000 (UTC)

branch: master
commit 41188347c7feec0a5d5cc9fce229d27841114f18
Author: Clément Pit--Claudel <address@hidden>
Commit: Clément Pit--Claudel <address@hidden>

    Suppress irrelevant compilation warnings
    
    `directory-files-recursively' is only present in recent Emacsen, but since
    it should only be run on maintainers' machines that's not an issue.
---
 realgud.el |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/realgud.el b/realgud.el
index 96289a0..5e4c019 100644
--- a/realgud.el
+++ b/realgud.el
@@ -195,8 +195,9 @@ autoloaded functions, and commit the resulting changes."
                            realgud--recursive-autoloads-base-directory)))
     (when (file-exists-p generated-autoload-file)
       (delete-file generated-autoload-file))
-    (dolist (name (directory-files-recursively
-                   realgud--recursive-autoloads-base-directory "" t))
+    (dolist (name (with-no-warnings
+                    (directory-files-recursively
+                     realgud--recursive-autoloads-base-directory "" t)))
       (when (file-directory-p name)
         (update-directory-autoloads name)))))
 



reply via email to

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