aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2010-11-20 13:47:49 +0200
committerEli Zaretskii2010-11-20 13:47:49 +0200
commit1cd64aaefe8f89c7f99ab8b8f6c86461288f1c80 (patch)
treeba24d955eeef5eacd0668e7267c021214f2572ee
parent6ce950f336909aa19d6c5ea6f3e1910b247f3d38 (diff)
parentd9a95e676752a131a373d2341146a3f13add0dbd (diff)
downloademacs-1cd64aaefe8f89c7f99ab8b8f6c86461288f1c80.tar.gz
emacs-1cd64aaefe8f89c7f99ab8b8f6c86461288f1c80.zip
faces.el (glyphless-char): Define value for `pc'.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/faces.el1
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 43c09bcc5b2..39ccd08ce91 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-11-20 Eli Zaretskii <eliz@gnu.org>
2
3 * faces.el (glyphless-char): Define value for `pc'.
4
12010-11-20 Tassilo Horn <tassilo@member.fsf.org> 52010-11-20 Tassilo Horn <tassilo@member.fsf.org>
2 6
3 * mail/emacsbug.el (report-emacs-bug-tracker-url) 7 * mail/emacsbug.el (report-emacs-bug-tracker-url)
diff --git a/lisp/faces.el b/lisp/faces.el
index 62428c0d29d..ba8535aac4f 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -2485,6 +2485,7 @@ Note: Other faces cannot inherit from the cursor face."
2485 2485
2486(defface glyphless-char 2486(defface glyphless-char
2487 '((((type tty)) :inherit underline) 2487 '((((type tty)) :inherit underline)
2488 (((type pc)) :inherit escape-glyph)
2488 (t :height 0.6)) 2489 (t :height 0.6))
2489 "Face for displaying non-graphic characters (e.g. U+202A (LRE)). 2490 "Face for displaying non-graphic characters (e.g. U+202A (LRE)).
2490It is used for characters of no fonts too." 2491It is used for characters of no fonts too."