]> code.delx.au - gnu-emacs/commitdiff
Fix definition of nobreak-space
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Apr 2016 22:20:55 +0000 (00:20 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Apr 2016 22:20:55 +0000 (00:20 +0200)
* lisp/faces.el (nobreak-space): The definition to
nobreak-space was inadvertantly changed by the previous checkin.

lisp/faces.el

index 552a7be9c9322f8536608aaf5a6674b4bfe924a0..7bd8107066a97d46c24fd2fbc9dbc1c0f5d92f6e 100644 (file)
@@ -2428,9 +2428,9 @@ If you set `term-file-prefix' to nil, this function does nothing."
   :version "22.1")
 
 (defface nobreak-space
-  '((((background dark)) :foreground "cyan")
-    (((type pc)) :foreground "magenta")
-    (t :foreground "brown"))
+  '((((class color) (min-colors 88)) :inherit escape-glyph :underline t)
+    (((class color) (min-colors 8)) :background "magenta")
+    (t :inverse-video t))
   "Face for displaying nobreak space."
   :group 'basic-faces
   :version "22.1")