From: Gerd Moellmann Date: Tue, 7 Mar 2000 12:25:28 +0000 (+0000) Subject: (x_connection_closed) [USE_X_TOOLKIT]: Don't try to X-Git-Tag: emacs-pretest-21.0.90~4740 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2e465cddf9b1c98ba1b496a74485c28cdb24b12f;p=emacs.git (x_connection_closed) [USE_X_TOOLKIT]: Don't try to close the display with XtCloseDisplay. This caused a bus error on OpenWindows. --- diff --git a/src/xterm.c b/src/xterm.c index 26d87fe3b4e..b60912dd9db 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -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;