changeset 63137:08283a69b880

(escape-glyph): Use blue once again in last case. (no-break-space): Redefined so that it isn't invisible on a tty.
author Richard M. Stallman <rms@gnu.org>
date Wed, 08 Jun 2005 15:41:36 +0000
parents bbac4c8066b4
children 2a347143dae3
files lisp/faces.el
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/faces.el	Wed Jun 08 15:35:05 2005 +0000
+++ b/lisp/faces.el	Wed Jun 08 15:41:36 2005 +0000
@@ -2089,13 +2089,16 @@
     ;; 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")