From: Dmitry Antipov <dmantipov@yandex.ru>
Date: Tue, 29 Jul 2014 16:38:46 +0000 (+0400)
Subject: * xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar
X-Git-Tag: emacs-25.0.90~2636^3~7
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8831a1c0433996746060e2c07ed4207192977146;p=emacs.git

* xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar
background value to match the resource of its vertical counterpart.
---

diff --git a/src/ChangeLog b/src/ChangeLog
index 6fae6782f0d..fa3afc3da86 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2014-07-29  Dmitry Antipov  <dmantipov@yandex.ru>
+
+	* xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar
+	background value to match the resource of its vertical counterpart.
+
 2014-07-29  Martin Rudalics  <rudalics@gmx.at>
 
 	* frame.c (adjust_frame_size): Use FRAME_WINDOW_P instead of
diff --git a/src/xrdb.c b/src/xrdb.c
index 107a8fca4e1..55abd9fd30f 100644
--- a/src/xrdb.c
+++ b/src/xrdb.c
@@ -499,6 +499,8 @@ x_load_resources (Display *display, const char *xrm_string,
   XrmPutLineResource (&rdb, line);
   sprintf (line, "Emacs*verticalScrollBar.background: grey75");
   XrmPutLineResource (&rdb, line);
+  sprintf (line, "Emacs*horizontalScrollBar.background: grey75");
+  XrmPutLineResource (&rdb, line);
 
 #endif /* not USE_MOTIF */