aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/faces.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index c02c91cde86..9db2cc9ce97 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -2089,13 +2089,16 @@ Note: Other faces cannot inherit from the cursor face."
2089 ;; See the comment in minibuffer-prompt for 2089 ;; See the comment in minibuffer-prompt for
2090 ;; the reason not to use blue on MS-DOS. 2090 ;; the reason not to use blue on MS-DOS.
2091 (((type pc)) :foreground "magenta") 2091 (((type pc)) :foreground "magenta")
2092 (t :foreground "red4")) 2092 ;; red4 is too light -- rms.
2093 (t :foreground "blue"))
2093 "Face for characters displayed as ^-sequences or \-sequences." 2094 "Face for characters displayed as ^-sequences or \-sequences."
2094 :group 'basic-faces 2095 :group 'basic-faces
2095 :version "22.1") 2096 :version "22.1")
2096 2097
2097(defface no-break-space 2098(defface no-break-space
2098 '((t :inherit escape-glyph :underline t)) 2099 '((((min-colors 88)) :inherit escape-glyph :underline t)
2100 (((min-colors 8)) :background "magenta" :foreground )
2101 (t :inverse-video t))
2099 "Face for non-breaking space." 2102 "Face for non-breaking space."
2100 :group 'basic-faces 2103 :group 'basic-faces
2101 :version "22.1") 2104 :version "22.1")