aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2014-06-06 02:31:46 +0300
committerJuri Linkov2014-06-06 02:31:46 +0300
commit9f7c9816f6e61841d47f221eaa27c2dc44e96dad (patch)
treeaee4df2323b6425239f316f9e536daa4dadbed3b
parent136c315e0be851b679a0ae0e8011ecc768e4b039 (diff)
downloademacs-9f7c9816f6e61841d47f221eaa27c2dc44e96dad.tar.gz
emacs-9f7c9816f6e61841d47f221eaa27c2dc44e96dad.zip
* etc/themes/deeper-blue-theme.el (diff-added, diff-changed, diff-removed):
Set face definitions explicitly. Inherit indicator faces from them. Fixes: debbugs:17695
-rw-r--r--etc/ChangeLog6
-rw-r--r--etc/TODO2
-rw-r--r--etc/themes/deeper-blue-theme.el12
3 files changed, 13 insertions, 7 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index dd703fc8f8e..9bc71271684 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,9 @@
12014-06-05 Juri Linkov <juri@jurta.org>
2
3 * themes/deeper-blue-theme.el (diff-added, diff-changed, diff-removed):
4 Set face definitions explicitly. Inherit indicator faces from them.
5 (Bug#17695)
6
12014-05-24 Paul Eggert <eggert@cs.ucla.edu> 72014-05-24 Paul Eggert <eggert@cs.ucla.edu>
2 8
3 Specify coding if Latin-1 Emacs would misinterpret (Bug#17575). 9 Specify coding if Latin-1 Emacs would misinterpret (Bug#17575).
diff --git a/etc/TODO b/etc/TODO
index a0952e825e7..18dd54d4582 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -651,7 +651,7 @@ rather than interactively. This a trivial one-liner in easy-mode.el.
651 [As of trunk r109635, 2012-08-15, the event loop no longer polls.] 651 [As of trunk r109635, 2012-08-15, the event loop no longer polls.]
652 652
653**** (mouse-avoidance-mode 'banish) then minimize Emacs, will pop window back 653**** (mouse-avoidance-mode 'banish) then minimize Emacs, will pop window back
654up on top of all others 654up on top of all others (probably fixed in bug#17439)
655 655
656**** free_frame_resources, face colors 656**** free_frame_resources, face colors
657 657
diff --git a/etc/themes/deeper-blue-theme.el b/etc/themes/deeper-blue-theme.el
index 1e1a8b4cc98..95f9c260260 100644
--- a/etc/themes/deeper-blue-theme.el
+++ b/etc/themes/deeper-blue-theme.el
@@ -40,19 +40,19 @@
40 `(cperl-hash-face ((,class (:foreground "coral1")))) 40 `(cperl-hash-face ((,class (:foreground "coral1"))))
41 `(cursor ((,class (:background "green")))) 41 `(cursor ((,class (:background "green"))))
42 `(default ((,class (:background "#181a26" :foreground "gray80")))) 42 `(default ((,class (:background "#181a26" :foreground "gray80"))))
43 `(diff-added ((,class (nil)))) 43 `(diff-added ((,class (:foreground "white" :background "darkolivegreen"))))
44 `(diff-changed ((,class (nil)))) 44 `(diff-changed ((,class (:foreground "white" :background "dodgerblue4"))))
45 `(diff-context ((,class (:foreground "seashell4")))) 45 `(diff-context ((,class (:foreground "seashell4"))))
46 `(diff-file-header ((,class (:background "grey60")))) 46 `(diff-file-header ((,class (:background "grey60"))))
47 `(diff-function ((,class (:inherit diff-header)))) 47 `(diff-function ((,class (:inherit diff-header))))
48 `(diff-header ((,class (:background "grey45")))) 48 `(diff-header ((,class (:background "grey45"))))
49 `(diff-hunk-header ((,class (:inherit diff-header)))) 49 `(diff-hunk-header ((,class (:inherit diff-header))))
50 `(diff-index ((,class (:inherit diff-file-header)))) 50 `(diff-index ((,class (:inherit diff-file-header))))
51 `(diff-indicator-added ((,class (:foreground "white" :background "darkolivegreen")))) 51 `(diff-indicator-added ((,class (:inherit diff-added))))
52 `(diff-indicator-changed ((,class (:foreground "white" :background "dodgerblue4")))) 52 `(diff-indicator-changed ((,class (:inherit diff-changed))))
53 `(diff-indicator-removed ((,class (:foreground "white" :background "indianred4")))) 53 `(diff-indicator-removed ((,class (:inherit diff-removed))))
54 `(diff-refine-change ((,class (:background "skyblue4")))) 54 `(diff-refine-change ((,class (:background "skyblue4"))))
55 `(diff-removed ((,class (nil)))) 55 `(diff-removed ((,class (:foreground "white" :background "indianred4"))))
56 `(dired-marked ((,class (:background "dodgerblue3" :foreground "white")))) 56 `(dired-marked ((,class (:background "dodgerblue3" :foreground "white"))))
57 `(ediff-current-diff-A ((,class (:background "green4" :foreground "white")))) 57 `(ediff-current-diff-A ((,class (:background "green4" :foreground "white"))))
58 `(ediff-current-diff-B ((,class (:background "darkorange3" :foreground "white")))) 58 `(ediff-current-diff-B ((,class (:background "darkorange3" :foreground "white"))))