]> git.eshelyaron.com Git - emacs.git/commitdiff
(escape-glyph): Use blue once again in last case.
authorRichard M. Stallman <rms@gnu.org>
Wed, 8 Jun 2005 15:41:36 +0000 (15:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 8 Jun 2005 15:41:36 +0000 (15:41 +0000)
(no-break-space): Redefined so that it isn't invisible on a tty.

lisp/faces.el

index c02c91cde86528e2f0e3483f28d762e71a7e4c91..9db2cc9ce971a628905998f28dc8ecb21d14cdf0 100644 (file)
@@ -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")