Mercurial > emacs
changeset 3683:568c8391744d
* xterm.c (x_error_quitter, x_io_error_quitter): Remove calls to
abort. We can always run Emacs with _Xdebug set to 1.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 12 Jun 1993 16:52:03 +0000 |
parents | 2a4e19efe862 |
children | 2be7629a9e17 |
files | src/xterm.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 (); }