]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid face clashes between Flymake and region highlighting
authorJoão Távora <joaotavora@gmail.com>
Sat, 2 Nov 2019 16:16:14 +0000 (16:16 +0000)
committerJoão Távora <joaotavora@gmail.com>
Sat, 2 Nov 2019 16:16:14 +0000 (16:16 +0000)
Fix bug#34022.

* lisp/progmodes/flymake.el (flymake--highlight-line): Use
(PRIMARY . SECONDARY) priority value.

lisp/progmodes/flymake.el

index 474c6335874c81131bd989e374bc5c73cc726e5d..e394096e23e89f66397aa588a07af670bd680c46 100644 (file)
@@ -652,7 +652,9 @@ associated `flymake-category' return DEFAULT."
              (flymake-diagnostics pos)
              "\n"))))
       (default-maybe 'severity (warning-numeric-level :error))
-      (default-maybe 'priority (+ 100 (overlay-get ov 'severity))))
+      ;; Use (PRIMARY . SECONDARY) priority, to avoid clashing with
+      ;; `region' face, for example (bug#34022).
+      (default-maybe 'priority (cons nil (+ 40 (overlay-get ov 'severity)))))
     ;; Some properties can't be overridden.
     ;;
     (overlay-put ov 'evaporate t)