From: Jim Blandy Date: Sat, 31 Jul 1993 01:32:23 +0000 (+0000) Subject: * xfns.c (Fx_open_connection): Test the CPP symbol X-Git-Tag: emacs-19.34~11484 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f5db3b940fece464c15ec7b82a751ab9c3038963;p=emacs.git * xfns.c (Fx_open_connection): Test the CPP symbol HAVE_XRMSETDATABASE to decide whether or not to call XrmSetDatabase. --- diff --git a/src/xfns.c b/src/xfns.c index 6b9a90f484b..07925ebb0ed 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -3560,7 +3560,7 @@ Optional second arg XRM_STRING is a string of resources in xrdb format.") (char *) XSTRING (Vx_resource_name)->data, EMACS_CLASS); UNBLOCK_INPUT; -#if defined (HAVE_X11R5) +#ifdef HAVE_XRMSETDATABASE XrmSetDatabase (x_current_display, xrdb); #else x_current_display->db = xrdb;