diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-06-08 15:53:51 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-06-08 15:53:51 +0000 |
commit | 96a017e43c9def35c67385759d769a064b6bf5c8 (patch) | |
tree | 9be32042077a7de8a60063d320b2323ac147e8ca | |
parent | 8177179364072d9ca1c9ffe68d497cb9547c5219 (diff) | |
download | emacs-96a017e43c9def35c67385759d769a064b6bf5c8.tar.gz |
(no-break-space): Test `class' before `min-colors'
-rw-r--r-- | lisp/faces.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 9db2cc9ce97..f278546154c 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2096,8 +2096,8 @@ Note: Other faces cannot inherit from the cursor face." :version "22.1") (defface no-break-space - '((((min-colors 88)) :inherit escape-glyph :underline t) - (((min-colors 8)) :background "magenta" :foreground ) + '((((class color) (min-colors 88)) :inherit escape-glyph :underline t) + (((class color) (min-colors 8)) :background "magenta" :foreground ) (t :inverse-video t)) "Face for non-breaking space." :group 'basic-faces |