diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-06-08 15:41:36 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-06-08 15:41:36 +0000 |
commit | 676873ff4452ce29142ad174c808c8b0993b1881 (patch) | |
tree | 1bc53c80a4c542929211224dec8f0eb0356d5cc2 /lisp/faces.el | |
parent | 03ceda9edd34ce05068a118bc8fd49913725fa09 (diff) | |
download | emacs-676873ff4452ce29142ad174c808c8b0993b1881.tar.gz |
(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/faces.el')
-rw-r--r-- | lisp/faces.el | 7 |
1 files changed, 5 insertions, 2 deletions
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") |