diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/whitespace.el | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b69f154d21f..226bc0f73c4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-07-28 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 2 | |||
| 3 | * whitespace.el (whitespace-newline): Change initialization to have a | ||
| 4 | low contrast relative to the background color. Suggested by David | ||
| 5 | Reitter <david.reitter@gmail.com>. | ||
| 6 | |||
| 1 | 2008-07-28 Juri Linkov <juri@jurta.org> | 7 | 2008-07-28 Juri Linkov <juri@jurta.org> |
| 2 | 8 | ||
| 3 | * dired-aux.el (dired-do-isearch, dired-do-isearch-regexp): | 9 | * dired-aux.el (dired-do-isearch, dired-do-isearch-regexp): |
diff --git a/lisp/whitespace.el b/lisp/whitespace.el index d30933fdca3..1e46c3c808a 100644 --- a/lisp/whitespace.el +++ b/lisp/whitespace.el | |||
| @@ -570,10 +570,10 @@ and `newline'." | |||
| 570 | 570 | ||
| 571 | (defface whitespace-newline | 571 | (defface whitespace-newline |
| 572 | '((((class color) (background dark)) | 572 | '((((class color) (background dark)) |
| 573 | (:background "grey26" :foreground "aquamarine3" :bold t)) | 573 | (:foreground "darkgray" :bold nil)) |
| 574 | (((class color) (background light)) | 574 | (((class color) (background light)) |
| 575 | (:background "linen" :foreground "aquamarine3" :bold t)) | 575 | (:foreground "lightgray" :bold nil)) |
| 576 | (t (:bold t :underline t))) | 576 | (t (:underline t :bold nil))) |
| 577 | "Face used to visualize NEWLINE char mapping. | 577 | "Face used to visualize NEWLINE char mapping. |
| 578 | 578 | ||
| 579 | See `whitespace-display-mappings'." | 579 | See `whitespace-display-mappings'." |