]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_delete_display) [AIX]: Don't call XRmDestroyDatabase.
authorRichard M. Stallman <rms@gnu.org>
Sat, 5 Aug 1995 00:57:17 +0000 (00:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 5 Aug 1995 00:57:17 +0000 (00:57 +0000)
src/xterm.c

index 89b7bf905291d2d24bed8890dbcb5c851cc268fa..a88cba5ea10f43ca43501952b09e1a39bd7d1898 100644 (file)
@@ -6027,10 +6027,11 @@ x_delete_display (dpyinfo)
          tail->next = tail->next->next;
     }
 
-#ifndef USE_X_TOOLKIT
-  /* I'm told Xt does this itself.  */
+#ifndef USE_X_TOOLKIT   /* I'm told Xt does this itself.  */
+#ifndef AIX            /* On AIX, XCloseDisplay calls this.  */
   XrmDestroyDatabase (dpyinfo->xrdb);
 #endif
+#endif
 #ifdef MULTI_KBOARD
   if (--dpyinfo->kboard->reference_count == 0)
     delete_kboard (dpyinfo->kboard);