Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9b37b1c2
Commit
9b37b1c2
authored
Jun 11, 1993
by
Jim Blandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* xrdb.c (get_user_db): Get the screen-specific database too.
parent
e27c3564
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
src/xrdb.c
src/xrdb.c
+9
-0
No files found.
src/xrdb.c
View file @
9b37b1c2
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment