aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorKarl Heuer1996-07-15 21:36:19 +0000
committerKarl Heuer1996-07-15 21:36:19 +0000
commit2fd1c3ad4b80d30772eb6858af45f462c35e03c6 (patch)
tree3c65df15d367e674a7caa6e4ff9be9d8e6c356f1 /src/data.c
parent74769282557f3e143a6de6002340ce8daae36a40 (diff)
downloademacs-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.c2
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
2714arith_error (signo) 2714arith_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);