]> git.eshelyaron.com Git - emacs.git/commitdiff
Flymake: use 'compilation-info' as basis for "note" faces
authorJim Porter <jporterbugs@gmail.com>
Wed, 20 Sep 2023 13:55:34 +0000 (14:55 +0100)
committerJoão Távora <joaotavora@gmail.com>
Wed, 20 Sep 2023 21:48:44 +0000 (22:48 +0100)
bug#66041

* lisp/progmodes/flymake.el (flymake-note-echo)
(flymake-note-echo-at-eol): Inherit from 'compilation-info'.

lisp/progmodes/flymake.el

index 0d6722728d02f44d56625ac1173a6161ec120ed6..269440fd8e185e3c92d7ae4c8b9bba8de3f31b39 100644 (file)
@@ -433,7 +433,7 @@ verify FILTER, a function, and sort them by COMPARE (using KEY)."
   :package-version '(Flymake . "1.3.4"))
 
 (defface flymake-note-echo
-  '((t :inherit flymake-note))
+  '((t :inherit compilation-info))
   "Face used for showing summarized descriptions of notes."
   :package-version '(Flymake . "1.3.4"))
 
@@ -454,7 +454,7 @@ See variable `flymake-show-diagnostics-at-end-of-line'."
   :package-version '(Flymake . "1.3.5"))
 
 (defface flymake-note-echo-at-eol
-  '((t :inherit (flymake-end-of-line-diagnostics-face flymake-note)))
+  '((t :inherit (flymake-end-of-line-diagnostics-face compilation-info)))
   "Face like `flymake-note-echo', but for end-of-line overlays."
   :package-version '(Flymake . "1.3.5"))