branch: master
commit 8cfde3d626e9f0d4443a6c7733b620830ff4bc0a
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
* async-bytecomp.el: Add comment.
---
async-bytecomp.el | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/async-bytecomp.el b/async-bytecomp.el
index 3ec8df9..ec57b88 100644
--- a/async-bytecomp.el
+++ b/async-bytecomp.el
@@ -90,6 +90,11 @@
(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
+ ;; does is loading the autoload file to update load-path but
+ ;; async-byte-recompile-directory is already doing this.
+ ;; for the rest (i.e installing info) it is done anyway after
+ ;; compilation in package-activate (force arg).
(package-activate-1 pkg-desc)
(async-byte-recompile-directory (package-desc-dir pkg-desc) 0 t))