1
0
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:
Richard M. Stallman 2005-06-17 14:30:55 +00:00
parent 043f95aba6
commit 2186242599

View File

@ -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)