]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix merging italic and underline faces with other fonts
authorEli Zaretskii <eliz@gnu.org>
Sat, 25 Nov 2023 10:30:03 +0000 (12:30 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 25 Nov 2023 10:30:03 +0000 (12:30 +0200)
* lisp/faces.el (italic, underline): Leave the 'slant'
resp. 'underline' attributes even when they are not supported by
the default font.  (Bug#67269)

lisp/faces.el

index 7eacc40443a32e3c691731e43150f4d72101b61b..8eaabbffc0e360352096cb612303afcf65cfa237 100644 (file)
@@ -2440,7 +2440,10 @@ If you set `term-file-prefix' to nil, this function does nothing."
   '((((supports :slant italic))
      :slant italic)
     (((supports :underline t))
-     :underline t)
+     ;; Include italic, even if it isn't supported by the default
+     ;; font, because this face could be merged with another face
+     ;; which uses font that does have an italic variant.
+     :underline t :slant italic)
     (t
      ;; Default to italic, even if it doesn't appear to be supported,
      ;; because in some cases the display engine will do its own
@@ -2457,7 +2460,9 @@ If you set `term-file-prefix' to nil, this function does nothing."
 (defface underline
   '((((supports :underline t))
      :underline t)
-    (((supports :weight bold))
+    ;; Include underline, for when this face is merged with another
+    ;; whose font does support underline.
+    (((supports :weight bold :underline t))
      :weight bold)
     (t :underline t))
   "Basic underlined face."