diff lisp/faces.el @ 111237:6788b08ca420

Handle glyphless characters on tty.
author Kenichi Handa <handa@m17n.org>
date Mon, 01 Nov 2010 13:09:26 +0900
parents 24c75a5f002a
children 707be8bc83af
line wrap: on
line diff
--- a/lisp/faces.el	Fri Oct 29 11:01:41 2010 +0900
+++ b/lisp/faces.el	Mon Nov 01 13:09:26 2010 +0900
@@ -2483,7 +2483,9 @@
   "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"