diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-11 16:20:38 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-11 16:20:38 +0000 |
commit | 9b09a656a759b8286d7d40f428b532ee1d8e8ec2 (patch) | |
tree | e56b1c68d44e77ae78aa23e534fde76bd3cae7f3 /src/xrdb.c | |
parent | b3511b04c55691da7a2b759d41b9fb4b548f04f8 (diff) | |
download | emacs-9b09a656a759b8286d7d40f428b532ee1d8e8ec2.tar.gz |
* xrdb.c (get_user_db): Get the screen-specific database too.
Diffstat (limited to 'src/xrdb.c')
-rw-r--r-- | src/xrdb.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xrdb.c b/src/xrdb.c index 19ca21f9e02..6a769e3aa6c 100644 --- a/src/xrdb.c +++ b/src/xrdb.c @@ -314,6 +314,15 @@ get_user_db (display) db = XrmGetFileDatabase (xdefault); } +#ifdef XlibSpecificationRelease +#if XlibSpecificationRelease >= 5 + /* Get the screen-specific resources too. */ + xdefs = XScreenResourceString (DefaultScreenOfDisplay (display)); + if (xdefs != NULL) + XrmMergeDatabases (XrmGetStringDatabase (xdefs), &db); +#endif +#endif + return db; } |