branch: master commit 5aa263c49f644ab00a8f135e7d4f2d8f2e63dbed Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
counsel.el (counsel-compile-make-pattern): Fix regex Re #1966 --- counsel.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counsel.el b/counsel.el index c4d6699..d06efa2 100644 --- a/counsel.el +++ b/counsel.el @@ -5164,7 +5164,7 @@ You may, for example, want to add \"-jN\" for the number of cores N in your system." :type 'string) -(defcustom counsel-compile-make-pattern "\\`\\(?:GNUM\\|[Mm]\\)akefile\\'" +(defcustom counsel-compile-make-pattern "\\`\\(?:GNUm\\|[Mm]\\)akefile\\'" "Regexp for matching the names of Makefiles." :type 'regexp)