diff options
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 562bde6ed41..5e421f3f70a 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2483,7 +2483,9 @@ Note: Other faces cannot inherit from the cursor face." "Face to highlight argument names in *Help* buffers." :group 'help) -(defface glyphless-char '((t :height 0.6)) +(defface glyphless-char + '((((type tty)) :inherit underline) + (t :height 0.6)) "Face for displaying non-graphic characters (e.g. U+202A (LRE)). It is used for characters of no fonts too." :version "24.1" |