From 2334ad569555933fa074d342b7016c9932eb4ab7 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Fri, 29 Apr 2016 00:20:55 +0200 Subject: [PATCH] Fix definition of nobreak-space * lisp/faces.el (nobreak-space): The definition to nobreak-space was inadvertantly changed by the previous checkin. --- lisp/faces.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/faces.el b/lisp/faces.el index 552a7be9c93..7bd8107066a 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -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") -- 2.39.2