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

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

[elpa] master a921e5f 136/187: Use always the args 0 and force for byte-


From: Michael Albinus
Subject: [elpa] master a921e5f 136/187: Use always the args 0 and force for byte-recompile-directory.
Date: Wed, 30 Dec 2015 11:50:12 +0000

branch: master
commit a921e5fcd40c367e27ef0491ab067df1eab50892
Author: Thierry Volpiatto <address@hidden>
Commit: Thierry Volpiatto <address@hidden>

    Use always the args 0 and force for byte-recompile-directory.
    
    * async-bytecomp.el (async-byte-recompile-directory): Remove confusing
    args used in byte-recompile-directory and add docstring.
    (package--compile): Remove old args of async-byte-recompile-directory.
---
 async-bytecomp.el |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/async-bytecomp.el b/async-bytecomp.el
index 8920c22..eaf3ad5 100644
--- a/async-bytecomp.el
+++ b/async-bytecomp.el
@@ -44,7 +44,9 @@
 
 (defvar async-byte-compile-log-file "~/.emacs.d/async-bytecomp.log")
 
-(defun async-byte-recompile-directory (directory &optional arg force quiet)
+(defun async-byte-recompile-directory (directory &optional quiet)
+  "Compile all *.el files in DIRECTORY asynchronously.
+All *.elc files are systematically deleted before proceeding."
   (cl-loop with dir = (directory-files directory t "\\.elc\\'")
            unless dir return nil
            for f in dir
@@ -81,7 +83,7 @@
         (let ((default-directory (file-name-as-directory ,directory))
               error-data)
           (add-to-list 'load-path default-directory)
-          (byte-recompile-directory ,directory ,arg ,force)
+          (byte-recompile-directory ,directory 0 t)
           (when (get-buffer byte-compile-log-buffer)
             (setq error-data (with-current-buffer byte-compile-log-buffer
                                (buffer-substring-no-properties (point-min) 
(point-max))))
@@ -90,7 +92,7 @@
                 (erase-buffer)
                 (insert error-data))))))
      call-back)
-    (message "Started compiling asynchronously directory %s..." directory)))
+    (message "Started compiling asynchronously directory %s" directory)))
 
 (defadvice package--compile (around byte-compile-async activate)
   ;; FIXME this seems redundant and unneeded, the only thing it
@@ -100,7 +102,7 @@
   ;; compilation in package-activate (force arg).
   (package-activate-1 pkg-desc)
   (load "async-bytecomp")
-  (async-byte-recompile-directory (package-desc-dir pkg-desc) 0 t t))
+  (async-byte-recompile-directory (package-desc-dir pkg-desc) t))
 
 (provide 'async-bytecomp)
 



reply via email to

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