aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2005-06-08 15:41:36 +0000
committerRichard M. Stallman <[email protected]>2005-06-08 15:41:36 +0000
commit676873ff4452ce29142ad174c808c8b0993b1881 (patch)
tree1bc53c80a4c542929211224dec8f0eb0356d5cc2 /lisp
parent03ceda9edd34ce05068a118bc8fd49913725fa09 (diff)
(escape-glyph): Use blue once again in last case.
(no-break-space): Redefined so that it isn't invisible on a tty.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/faces.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index c02c91cde8..9db2cc9ce9 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -2089,13 +2089,16 @@ Note: Other faces cannot inherit from the cursor face."
;; See the comment in minibuffer-prompt for
;; the reason not to use blue on MS-DOS.
(((type pc)) :foreground "magenta")
- (t :foreground "red4"))
+ ;; red4 is too light -- rms.
+ (t :foreground "blue"))
"Face for characters displayed as ^-sequences or \-sequences."
:group 'basic-faces
:version "22.1")
(defface no-break-space
- '((t :inherit escape-glyph :underline t))
+ '((((min-colors 88)) :inherit escape-glyph :underline t)
+ (((min-colors 8)) :background "magenta" :foreground )
+ (t :inverse-video t))
"Face for non-breaking space."
:group 'basic-faces
:version "22.1")