1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-18 10:16:51 +00:00

* xterm.c (x_error_quitter, x_io_error_quitter): Remove calls to

abort.  We can always run Emacs with _Xdebug set to 1.
This commit is contained in:
Jim Blandy 1993-06-12 16:52:03 +00:00
parent 14ec05a6aa
commit e09f935147

View File

@ -3803,9 +3803,11 @@ x_error_quitter (display, error)
fprintf (stderr, "X protocol error: %s on protocol request %d\n",
buf, error->request_code);
#if 0
/* While we're testing Emacs 19, we'll just dump core whenever we
get an X error, so we can figure out why it happened. */
abort ();
#endif
x_connection_closed ();
}
@ -3820,9 +3822,11 @@ x_io_error_quitter (display)
fprintf (stderr, "Connection to X server %s lost.\n",
XDisplayName (DisplayString (display)));
#if 0
/* While we're testing Emacs 19, we'll just dump core whenever we
get an X error, so we can figure out why it happened. */
abort ();
#endif
x_connection_closed ();
}