diff options
| author | Richard M. Stallman <rms@gnu.org> | 2007-10-09 01:39:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 2007-10-09 01:39:13 +0000 |
| commit | 0f1947abae6af6bd9ab3e59f4deae0cdc24ab43a (patch) | |
| tree | bf0fce63eddda4321b2165e8641ee231c6e41e8d /src/eval.c | |
| parent | 7b3cf84ec70e00be73ae752b62690df2f01bdf56 (diff) | |
| download | emacs-0f1947abae6af6bd9ab3e59f4deae0cdc24ab43a.tar.gz | |
(internal_condition_case_2, internal_condition_case_1)
(internal_condition_case): Reenable abort if x_catching_errors (),
to see if that really happens and why.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/eval.c b/src/eval.c index 03923d815aa..8a499ec3851 100644 --- a/src/eval.c +++ b/src/eval.c @@ -1462,12 +1462,10 @@ internal_condition_case (bfun, handlers, hfun) /* Since Fsignal will close off all calls to x_catch_errors, we will get the wrong results if some are not closed now. */ -#if 0 /* Fsignal doesn't do that anymore. --lorentey */ #if HAVE_X_WINDOWS if (x_catching_errors ()) abort (); #endif -#endif c.tag = Qnil; c.val = Qnil; @@ -1512,12 +1510,10 @@ internal_condition_case_1 (bfun, arg, handlers, hfun) /* Since Fsignal will close off all calls to x_catch_errors, we will get the wrong results if some are not closed now. */ -#if 0 /* Fsignal doesn't do that anymore. --lorentey */ #if HAVE_X_WINDOWS if (x_catching_errors ()) abort (); #endif -#endif c.tag = Qnil; c.val = Qnil; @@ -1565,12 +1561,10 @@ internal_condition_case_2 (bfun, nargs, args, handlers, hfun) /* Since Fsignal will close off all calls to x_catch_errors, we will get the wrong results if some are not closed now. */ -#if 0 /* Fsignal doesn't do that anymore. --lorentey */ #if HAVE_X_WINDOWS if (x_catching_errors ()) abort (); #endif -#endif c.tag = Qnil; c.val = Qnil; |
