]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't make key binding face wider than the norm
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 1 Nov 2021 00:34:59 +0000 (01:34 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 1 Nov 2021 00:35:06 +0000 (01:35 +0100)
* 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

index 83c6b695320a1c588b636885057c3aa0e85fc0d0..84180eadc031d85a70f56171def9e15c9d20dd2b 100644 (file)
@@ -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"))