From: Richard M. Stallman Date: Wed, 8 Jun 2005 15:41:36 +0000 (+0000) Subject: (escape-glyph): Use blue once again in last case. X-Git-Tag: emacs-pretest-22.0.90~9199 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=676873ff4452ce29142ad174c808c8b0993b1881;p=emacs.git (escape-glyph): Use blue once again in last case. (no-break-space): Redefined so that it isn't invisible on a tty. --- 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." ;; 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")