Mercurial > emacs
diff src/data.c @ 15686:eb312ef89034
(arith_error): Don't reinstall sig handler if POSIX_SIGNALS.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Mon, 15 Jul 1996 21:36:19 +0000 |
| parents | bf3ee2ec5068 |
| children | 7955341c2d19 |
line wrap: on
line diff
--- a/src/data.c Mon Jul 15 21:33:30 1996 +0000 +++ b/src/data.c Mon Jul 15 21:36:19 1996 +0000 @@ -2714,7 +2714,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);
