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

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

[elpa] externals/async 00c6f3f 18/27: fix inclusion of bytecomp variable


From: ELPA Syncer
Subject: [elpa] externals/async 00c6f3f 18/27: fix inclusion of bytecomp variables
Date: Fri, 30 Apr 2021 15:57:13 -0400 (EDT)

branch: externals/async
commit 00c6f3f85bb86a8902b07f102e010d49796d8937
Author: Steven Allen <steven@stebalien.com>
Commit: Steven Allen <steven@stebalien.com>

    fix inclusion of bytecomp variables
    
    The regexp was inclusing all variables ending with `byte`, not variables 
starting with `byte-`.
---
 async-bytecomp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/async-bytecomp.el b/async-bytecomp.el
index 430d196..6a61ca3 100644
--- a/async-bytecomp.el
+++ b/async-bytecomp.el
@@ -91,7 +91,7 @@ All *.elc files are systematically deleted before proceeding."
     (async-start
      `(lambda ()
         (require 'bytecomp)
-        ,(async-inject-variables "\\`\\(load-path\\)\\|byte\\'")
+        ,(async-inject-variables "\\`\\(load-path\\'\\|byte-\\)")
         (let ((default-directory (file-name-as-directory ,directory))
               error-data)
           (add-to-list 'load-path default-directory)



reply via email to

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