]> git.eshelyaron.com Git - emacs.git/commitdiff
whitespace-newline: change initilization to have a low contrast relative to the backg...
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Tue, 29 Jul 2008 01:56:57 +0000 (01:56 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Tue, 29 Jul 2008 01:56:57 +0000 (01:56 +0000)
lisp/ChangeLog
lisp/whitespace.el

index b69f154d21f3fc7e0dcd4c181fd05196af3c40b4..226bc0f73c48e9e20a078ca2ca8b975aa84c444c 100644 (file)
@@ -1,3 +1,9 @@
+2008-07-28  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
+
+       * whitespace.el (whitespace-newline): Change initialization to have a
+       low contrast relative to the background color.  Suggested by David
+       Reitter <david.reitter@gmail.com>.
+
 2008-07-28  Juri Linkov  <juri@jurta.org>
 
        * dired-aux.el (dired-do-isearch, dired-do-isearch-regexp):
index d30933fdca30603d27f22da709f751e05d5162b9..1e46c3c808a604707867f6d09c811f96ed8e691b 100644 (file)
@@ -570,10 +570,10 @@ and `newline'."
 
 (defface whitespace-newline
   '((((class color) (background dark))
-     (:background "grey26" :foreground "aquamarine3" :bold t))
+     (:foreground "darkgray" :bold nil))
     (((class color) (background light))
-     (:background "linen"  :foreground "aquamarine3" :bold t))
-    (t (:bold t :underline t)))
+     (:foreground "lightgray" :bold nil))
+    (t (:underline t :bold nil)))
   "Face used to visualize NEWLINE char mapping.
 
 See `whitespace-display-mappings'."