Mercurial > emacs
diff src/data.c @ 16150:f388360fb59a
(arith_error) [POSIX_SIGNALS]: Don't reestablish handler.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 10 Sep 1996 19:49:35 +0000 |
| parents | ccf489f8596e |
| children | e46fcec4629d |
line wrap: on
line diff
--- a/src/data.c Tue Sep 10 19:22:12 1996 +0000 +++ b/src/data.c Tue Sep 10 19:49:35 1996 +0000 @@ -2711,7 +2711,7 @@ arith_error (signo) int signo; { -#ifdef USG +#if defined(USG) && !defined(POSIX_SIGNALS) /* USG systems forget handlers when they are used; must reestablish each time */ signal (signo, arith_error);
