emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master c825c82: Don't make key binding face wider than the norm


From: Lars Ingebrigtsen
Subject: master c825c82: Don't make key binding face wider than the norm
Date: Sun, 31 Oct 2021 20:35:13 -0400 (EDT)

branch: master
commit c825c825256475ac5c74882811a44228140f18ee
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Don't make key binding face wider than the norm
    
    * lisp/faces.el (help-key-binding): Don't make the chars wider
    than normally, because that makes `C-h b' lining-up logic fail.
---
 lisp/faces.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/faces.el b/lisp/faces.el
index 83c6b69..84180ea 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -2879,10 +2879,10 @@ Note: Other faces cannot inherit from the cursor face."
      ;; We use negative thickness of the horizontal box border line to
      ;; avoid enlarging the height of the echo-area display, which
      ;; would then move the mode line a few pixels up.
-     :box (:line-width (1 . -1) :color "grey80"))
+     :box (:line-width (-1 . -1) :color "grey80"))
     (((class color) (min-colors 88) (background dark))
      :background "grey19" :foreground "LightBlue"
-     :box (:line-width (1 . -1) :color "grey35"))
+     :box (:line-width (-1 . -1) :color "grey35"))
     (((class color grayscale) (background light)) :background "grey90")
     (((class color grayscale) (background dark)) :background "grey25")
     (t :background "grey90"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]