# HG changeset patch # User Jim Blandy # Date 739903923 0 # Node ID 568c8391744d7d0fb1ea22b46637f2cc907fbaef # Parent 2a4e19efe8620b9efc883c834fa91121dac9ab4d * xterm.c (x_error_quitter, x_io_error_quitter): Remove calls to abort. We can always run Emacs with _Xdebug set to 1. diff -r 2a4e19efe862 -r 568c8391744d src/xterm.c --- a/src/xterm.c Sat Jun 12 16:00:47 1993 +0000 +++ b/src/xterm.c Sat Jun 12 16:52:03 1993 +0000 @@ -3803,9 +3803,11 @@ 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 @@ 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 (); }