From 2e465cddf9b1c98ba1b496a74485c28cdb24b12f Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 7 Mar 2000 12:25:28 +0000 Subject: [PATCH] (x_connection_closed) [USE_X_TOOLKIT]: Don't try to close the display with XtCloseDisplay. This caused a bus error on OpenWindows. --- src/xterm.c | 2 ++ 1 file changed, 2 insertions(+) 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; -- 2.39.5