aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/faces.el
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2010-11-01 13:09:26 +0900
committerKenichi Handa <[email protected]>2010-11-01 13:09:26 +0900
commitb18fad6db4efeda274dcb36706a4146650570e6b (patch)
tree5534ead2ed9b34b021ac3e92c88cf70350f26351 /lisp/faces.el
parent0269bd906626243b117136d6ea9eb98d2947b9f8 (diff)
Handle glyphless characters on tty.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r--lisp/faces.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 562bde6ed4..5e421f3f70 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"