]> git.eshelyaron.com Git - emacs.git/commitdiff
Make compilation-mode regexp matching case-sensitive (bug#40119)
authorMattias Engdegård <mattiase@acm.org>
Wed, 18 Mar 2020 15:01:02 +0000 (16:01 +0100)
committerMattias Engdegård <mattiase@acm.org>
Wed, 25 Mar 2020 20:41:49 +0000 (21:41 +0100)
The number of regexps is large, they are written independently of one
another, and they frequently intersect.  Using case-sensitive matching
improves separation and performance, and is probably what everyone
have being assuming was used by compilation-mode all along.

* lisp/progmodes/compile.el (compilation-error-case-fold-search): New.
(compilation-parse-errors): Bind case-fold-search to
compilation-error-case-fold-search during matching.
* etc/NEWS: Announce.

etc/NEWS
lisp/progmodes/compile.el

index 1be5ad6acc0aa3f3e53821f83e47c0dcb85d773c..910d9fa2d239c1563b0e0411f0cb0e3e4abbc93e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -196,6 +196,12 @@ key             binding
 *** New user option 'gravatar-service' for host to query for gravatars.
 Defaults to Libravatar, with Unicornify and Gravatar as options.
 
+** Compilation mode
+
+*** Regexp matching of messages is now case-sensitive by default.
+The user option 'compilation-error-case-fold-search' can be set
+for case-insensitive matching of messages.
+
 \f
 * New Modes and Packages in Emacs 28.1
 
index 455f181f5017003e5ea6d38c56b60ed6cc27cf95..f4532b7edb706b0552ebedc6ecf07c07eb34a4ce 100644 (file)
@@ -646,6 +646,14 @@ matched file names, and weeding out false positives."
   :link `(file-link :tag "example file"
                    ,(expand-file-name "compilation.txt" data-directory)))
 
+(defcustom compilation-error-case-fold-search nil
+  "If non-nil, use case-insensitive matching of compilation errors
+by the regexps of `compilation-error-regexp-alist' and
+`compilation-error-regexp-alist-alist'.
+If nil, matching is case-sensitive."
+  :type 'boolean
+  :version "28.1")
+
 ;;;###autoload(put 'compilation-directory 'safe-local-variable 'stringp)
 (defvar compilation-directory nil
   "Directory to restore to when doing `recompile'.")
@@ -1435,7 +1443,8 @@ to `compilation-error-regexp-alist' if RULES is nil."
     (if (symbolp item)
         (setq item (cdr (assq item
                               compilation-error-regexp-alist-alist))))
-    (let ((file (nth 1 item))
+    (let ((case-fold-search compilation-error-case-fold-search)
+          (file (nth 1 item))
           (line (nth 2 item))
           (col (nth 3 item))
           (type (nth 4 item))