From: Lars Ingebrigtsen Date: Thu, 28 Apr 2016 22:20:55 +0000 (+0200) Subject: Fix definition of nobreak-space X-Git-Tag: emacs-26.0.90~2121 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2334ad569555933fa074d342b7016c9932eb4ab7;p=emacs.git Fix definition of nobreak-space * lisp/faces.el (nobreak-space): The definition to nobreak-space was inadvertantly changed by the previous checkin. --- 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")