mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-24 10:38:38 +00:00
(underline): Try bold if terminal doesn't support underline.
This commit is contained in:
parent
043f95aba6
commit
2186242599
@ -2035,7 +2035,11 @@ Note: Other faces cannot inherit from the cursor face."
|
||||
:group 'basic-faces)
|
||||
|
||||
|
||||
(defface underline '((t :underline t))
|
||||
(defface underline '((((supports :underline t))
|
||||
:underline t)
|
||||
(((supports :weight bold))
|
||||
:weight bold)
|
||||
(t :underline t))
|
||||
"Basic underlined face."
|
||||
:group 'basic-faces)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user