1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 20:00:46 -08:00

* xrdb.c (get_user_db): Since xrdb.c doesn't #include xterm.h,

we can't test HAVE_X11R4 to see how we should get the resource
	manager string; cheat.
This commit is contained in:
Jim Blandy 1993-03-11 07:18:48 +00:00
parent 8116bbb043
commit 2c8d1900af

View file

@ -292,7 +292,7 @@ get_user_db (display)
XrmDatabase db;
char *xdefs;
#ifdef HAVE_X11R4
#ifdef PBaseSize /* Cheap way to test for X11R4 or later. */
xdefs = XResourceManagerString (display);
#else
xdefs = display->xdefaults;