1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

whitespace-newline: change initilization to have a low contrast relative to the background color.

This commit is contained in:
Vinicius Jose Latorre 2008-07-29 01:56:57 +00:00
parent 0e134ea0ce
commit 178620169c
2 changed files with 9 additions and 3 deletions

View 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):

View 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'."