Mercurial > hg > xemacs-beta
changeset 4862:7ac51121843b
Modify X11 bgcolor fallback for the default face.
author | Didier Verna <didier@lrde.epita.fr> |
---|---|
date | Thu, 14 Jan 2010 21:39:09 +0100 |
parents | 1f3ed6288996 |
children | 5ab6dc5d789e |
files | src/ChangeLog src/faces.c |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Thu Jan 14 06:08:55 2010 -0600 +++ b/src/ChangeLog Thu Jan 14 21:39:09 2010 +0100 @@ -1,3 +1,8 @@ +2010-01-14 Didier Verna <didier@xemacs.org> + + * faces.c (complex_vars_of_faces): change X11 bgcolor fallback of + default face to match that of gui element face. + 2010-01-14 Ben Wing <ben@xemacs.org> * buffer.h:
--- a/src/faces.c Thu Jan 14 06:08:55 2010 -0600 +++ b/src/faces.c Thu Jan 14 21:39:09 2010 +0100 @@ -2244,7 +2244,7 @@ #endif #ifdef HAVE_X_WINDOWS fg_fb = acons (list1 (Qx), build_string ("black"), fg_fb); - bg_fb = acons (list1 (Qx), build_string ("white"), bg_fb); + bg_fb = acons (list1 (Qx), build_string ("gray80"), bg_fb); #endif #ifdef HAVE_TTY fg_fb = acons (list1 (Qtty), Fvector (0, 0), fg_fb);