aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-06-12 16:52:03 +0000
committerJim Blandy1993-06-12 16:52:03 +0000
commite09f935147cae904883d3c45e3cd39b947f2e409 (patch)
treeb7bbbe81475268bf2efc11430ccec55d6c77c6b4
parent14ec05a6aa653f32678c84ccbe65360e05fcc00e (diff)
downloademacs-e09f935147cae904883d3c45e3cd39b947f2e409.tar.gz
emacs-e09f935147cae904883d3c45e3cd39b947f2e409.zip
* xterm.c (x_error_quitter, x_io_error_quitter): Remove calls to
abort. We can always run Emacs with _Xdebug set to 1.
-rw-r--r--src/xterm.c4
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)
3803 fprintf (stderr, "X protocol error: %s on protocol request %d\n", 3803 fprintf (stderr, "X protocol error: %s on protocol request %d\n",
3804 buf, error->request_code); 3804 buf, error->request_code);
3805 3805
3806#if 0
3806 /* While we're testing Emacs 19, we'll just dump core whenever we 3807 /* While we're testing Emacs 19, we'll just dump core whenever we
3807 get an X error, so we can figure out why it happened. */ 3808 get an X error, so we can figure out why it happened. */
3808 abort (); 3809 abort ();
3810#endif
3809 3811
3810 x_connection_closed (); 3812 x_connection_closed ();
3811} 3813}
@@ -3820,9 +3822,11 @@ x_io_error_quitter (display)
3820 fprintf (stderr, "Connection to X server %s lost.\n", 3822 fprintf (stderr, "Connection to X server %s lost.\n",
3821 XDisplayName (DisplayString (display))); 3823 XDisplayName (DisplayString (display)));
3822 3824
3825#if 0
3823 /* While we're testing Emacs 19, we'll just dump core whenever we 3826 /* While we're testing Emacs 19, we'll just dump core whenever we
3824 get an X error, so we can figure out why it happened. */ 3827 get an X error, so we can figure out why it happened. */
3825 abort (); 3828 abort ();
3829#endif
3826 3830
3827 x_connection_closed (); 3831 x_connection_closed ();
3828} 3832}