]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_connection_closed) [USE_X_TOOLKIT]: Don't try to
authorGerd Moellmann <gerd@gnu.org>
Tue, 7 Mar 2000 12:25:28 +0000 (12:25 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 7 Mar 2000 12:25:28 +0000 (12:25 +0000)
close the display with XtCloseDisplay.  This caused a bus error
on OpenWindows.

src/xterm.c

index 26d87fe3b4ec93fb88c0a6b8bc04de933de2f9a5..b60912dd9dbc2bfda0bee54e801fb13be3700f8e 100644 (file)
@@ -10752,8 +10752,10 @@ x_connection_closed (display, error_message)
 
   /* Indicate that this display is dead.  */
 
+#if 0 /* Closing the display caused a bus error on OpenWindows.  */
 #ifdef USE_X_TOOLKIT
   XtCloseDisplay (display);
+#endif
 #endif
 
   dpyinfo->display = 0;