branch: master
commit 7616e0c6ab8212c0b08977fb3818608bb1a1c378
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    Check if pkg is member of package-archive-contents (#51).
    
    * async-bytecomp.el (async-bytecomp-get-allowed-pkgs): Do it.
---
 async-bytecomp.el |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/async-bytecomp.el b/async-bytecomp.el
index 0daa079..ba79d75 100644
--- a/async-bytecomp.el
+++ b/async-bytecomp.el
@@ -131,6 +131,7 @@ All *.elc files are systematically deleted before 
proceeding."
              (listp async-bytecomp-allowed-packages))
     (if package-archive-contents
         (cl-loop for p in async-bytecomp-allowed-packages
+                 when (assq p package-archive-contents)
                  append (async-bytecomp--get-package-deps p) into reqs
                  finally return
                  (delete-dups

Reply via email to