branch: master
commit 1332ab0bb3952c7669691f2cd2e44b190f86593c
Author: Alex Branham <alex.bran...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>

    counsel.el (counsel-compile-env-pattern): Fix regex typo
    
    Fixes #2193
---
 counsel.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/counsel.el b/counsel.el
index ca7bbde..0885322 100644
--- a/counsel.el
+++ b/counsel.el
@@ -5528,7 +5528,7 @@ list is passed to `compilation-environment'."
   "History for `counsel-compile-env'.")
 
 (defvar counsel-compile-env-pattern
-  "[_[:digit:][:upper:]]+=[/[:album:]]*"
+  "[_[:digit:][:upper:]]+=[/[:alnum:]]*"
   "Pattern to match valid environment variables.")
 
 (defcustom counsel-compile-make-pattern "\\`\\(?:GNUm\\|[Mm]\\)akefile\\'"

Reply via email to