diff options
| author | Jim Blandy <jimb@redhat.com> | 1993-06-12 16:52:03 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1993-06-12 16:52:03 +0000 |
| commit | e09f935147cae904883d3c45e3cd39b947f2e409 (patch) | |
| tree | b7bbbe81475268bf2efc11430ccec55d6c77c6b4 /src | |
| parent | 14ec05a6aa653f32678c84ccbe65360e05fcc00e (diff) | |
| download | emacs-e09f935147cae904883d3c45e3cd39b947f2e409.tar.gz | |
* xterm.c (x_error_quitter, x_io_error_quitter): Remove calls to
abort. We can always run Emacs with _Xdebug set to 1.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c index 54e19a45928..a9a10297bef 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -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 (); } |
