From: Karl Heuer Date: Mon, 15 Jul 1996 21:36:19 +0000 (+0000) Subject: (arith_error): Don't reinstall sig handler if POSIX_SIGNALS. X-Git-Tag: emacs-19.34~176 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2fd1c3ad4b80d30772eb6858af45f462c35e03c6;p=emacs.git (arith_error): Don't reinstall sig handler if POSIX_SIGNALS. --- 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 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);