emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 2334ad5 2/2: Fix definition of nobreak-space


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 2334ad5 2/2: Fix definition of nobreak-space
Date: Thu, 28 Apr 2016 22:23:41 +0000

branch: master
commit 2334ad569555933fa074d342b7016c9932eb4ab7
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    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 552a7be..7bd8107 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]