diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-06-17 14:30:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-06-17 14:30:55 +0000 |
commit | 218624259914e204f73c83a49a631eca8bff5a78 (patch) | |
tree | 6b4a49d6f27fea442e8b6006a7fe4124cf757717 /lisp/faces.el | |
parent | 043f95aba6f311431cf6b3fefdd81def8b25a789 (diff) | |
download | emacs-218624259914e204f73c83a49a631eca8bff5a78.tar.gz |
(underline): Try bold if terminal doesn't support underline.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index fcac684b3a1..dc94beb4aa6 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -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) |