* xrdb.c (get_user_db): Since xrdb.c doesn't #include xterm.h,
authorJim Blandy <jimb@redhat.com>
Thu, 11 Mar 1993 07:18:48 +0000 (07:18 +0000)
committerJim Blandy <jimb@redhat.com>
Thu, 11 Mar 1993 07:18:48 +0000 (07:18 +0000)
we can't test HAVE_X11R4 to see how we should get the resource
manager string; cheat.

src/xrdb.c

index 8de78ae..a83cb37 100644 (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;