diff options
| author | Karl Heuer | 1996-07-15 21:36:19 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-07-15 21:36:19 +0000 |
| commit | 2fd1c3ad4b80d30772eb6858af45f462c35e03c6 (patch) | |
| tree | 3c65df15d367e674a7caa6e4ff9be9d8e6c356f1 /src/data.c | |
| parent | 74769282557f3e143a6de6002340ce8daae36a40 (diff) | |
| download | emacs-2fd1c3ad4b80d30772eb6858af45f462c35e03c6.tar.gz emacs-2fd1c3ad4b80d30772eb6858af45f462c35e03c6.zip | |
(arith_error): Don't reinstall sig handler if POSIX_SIGNALS.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 88ed31a14bb..96a713daf98 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -2714,7 +2714,7 @@ SIGTYPE | |||
| 2714 | arith_error (signo) | 2714 | arith_error (signo) |
| 2715 | int signo; | 2715 | int signo; |
| 2716 | { | 2716 | { |
| 2717 | #ifdef USG | 2717 | #if defined(USG) && !defined(POSIX_SIGNALS) |
| 2718 | /* USG systems forget handlers when they are used; | 2718 | /* USG systems forget handlers when they are used; |
| 2719 | must reestablish each time */ | 2719 | must reestablish each time */ |
| 2720 | signal (signo, arith_error); | 2720 | signal (signo, arith_error); |