aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-10-10 01:19:33 +0200
committerLars Ingebrigtsen2019-10-10 01:19:33 +0200
commit3f594fef9eeeda2272dc9858b6b17bbd5fa2f436 (patch)
tree1346624c594c1c075415fc6d3672675fc1e2ae35 /etc
parente4efab3f03cec69c87b2e3e28bd70f401821d96f (diff)
downloademacs-3f594fef9eeeda2272dc9858b6b17bbd5fa2f436.tar.gz
emacs-3f594fef9eeeda2272dc9858b6b17bbd5fa2f436.zip
Allow filtering out warnings/errors from compile.el detection
* lisp/progmodes/compile.el (compilation-transform-file-match-alist): New variable (bug#32968). (compilation-error-properties): Use it to remove known false positives. (compilation-error-regexp-alist): Mention it in this doc string.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 49aa7f6007b..3b98ef7d2f5 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -612,6 +612,10 @@ be functions.
612nil, but instead of scrolling the current line to the top of the 612nil, but instead of scrolling the current line to the top of the
613screen when there is no left fringe, it inserts a visible arrow before 613screen when there is no left fringe, it inserts a visible arrow before
614column zero. 614column zero.
615---
616*** The new 'compilation-transform-file-match-alist' variable can be used
617to transform file name matches compilation output, and remove known
618false positives being recognised as warnings/errors.
615 619
616** cl-lib.el 620** cl-lib.el
617+++ 621+++