aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Gutov2023-04-19 01:56:57 +0300
committerDmitry Gutov2023-04-19 01:57:26 +0300
commit08b480e13facadcd3a6d205d604deeeab4bbedc6 (patch)
treefa442ce921249cd6f52817534eccc4d95029105e
parent0d2fdf6e36d35e7ab64d8894e8d4c27b0cc06875 (diff)
downloademacs-08b480e13facadcd3a6d205d604deeeab4bbedc6.tar.gz
emacs-08b480e13facadcd3a6d205d604deeeab4bbedc6.zip
flymake-end-of-line-diagnostics-face: Tweak a little
* lisp/progmodes/flymake.el (flymake-end-of-line-diagnostics-face): Use height 0.85 and ensure the box doesn't change the line height (https://debbugs.gnu.org/62029#86).
-rw-r--r--lisp/progmodes/flymake.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 3af410683a7..f03b9ab56a0 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -447,7 +447,7 @@ verify FILTER, a function, and sort them by COMPARE (using KEY)."
447 :package-version '(Flymake . "1.3.4")) 447 :package-version '(Flymake . "1.3.4"))
448 448
449(defface flymake-end-of-line-diagnostics-face 449(defface flymake-end-of-line-diagnostics-face
450 '((t :height 0.7 :box (:line-width 1))) 450 '((t :height 0.85 :box (:line-width -1)))
451 "Face used for end-of-line diagnostics. 451 "Face used for end-of-line diagnostics.
452See variable `flymake-show-diagnostics-at-end-of-line'." 452See variable `flymake-show-diagnostics-at-end-of-line'."
453 :package-version '(Flymake . "1.3.5")) 453 :package-version '(Flymake . "1.3.5"))