Mercurial > emacs
changeset 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 | eb953f4baf7b |
children | 481c5be39150 |
files | src/data.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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);