diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/faces.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 971cc182448..0affac1deaa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-09-28 Jan Djärv <jan.h.d@swipnet.se> + + * faces.el (region): Change ns_selection_color to + ns_selection_fg_color, add ns_selection_bg_color. + 2013-09-28 Leo Liu <sdl.web@gmail.com> * progmodes/octave.el (inferior-octave-completion-table) diff --git a/lisp/faces.el b/lisp/faces.el index b135755f165..589a1e1ca75 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -2259,7 +2259,8 @@ terminal type to a different value." :foreground "gtk_selection_fg_color" :background "gtk_selection_bg_color") (((class color) (min-colors 88) (background light) (type ns)) - :background "ns_selection_color") + :foreground "ns_selection_fg_color" + :background "ns_selection_bg_color") (((class color) (min-colors 88) (background light)) :background "lightgoldenrod2") (((class color) (min-colors 16) (background dark)) |