changeset 63716:7f05fee725b0

(escape-glyph): Use brown against light background. (nobreak-space): Renamed from no-break-space. Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Thu, 23 Jun 2005 21:24:58 +0000
parents 503f7ad3d4d8
children 2bd9653ec2f2
files lisp/faces.el
diffstat 1 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/faces.el	Thu Jun 23 21:23:17 2005 +0000
+++ b/lisp/faces.el	Thu Jun 23 21:24:58 2005 +0000
@@ -2119,17 +2119,18 @@
     ;; See the comment in minibuffer-prompt for
     ;; the reason not to use blue on MS-DOS.
     (((type pc)) :foreground "magenta")
-    ;; red4 is too light -- rms.
-    (t :foreground "blue"))
+    ;; red4 is too dark, but some say blue is too loud.
+    ;; brown seems to work ok. -- rms.
+    (t :foreground "brown"))
   "Face for characters displayed as ^-sequences or \-sequences."
   :group 'basic-faces
   :version "22.1")
 
-(defface no-break-space
+(defface nobreak-space
   '((((class color) (min-colors 88)) :inherit escape-glyph :underline t)
-    (((class color) (min-colors 8)) :background "magenta" :foreground )
+    (((class color) (min-colors 8)) :background "magenta")
     (t :inverse-video t))
-  "Face for non-breaking space."
+  "Face for displaying nobreak space."
   :group 'basic-faces
   :version "22.1")