From: Richard M. Stallman Date: Tue, 10 Sep 1996 19:49:35 +0000 (+0000) Subject: (arith_error) [POSIX_SIGNALS]: Don't reestablish handler. X-Git-Tag: emacs-20.1~3794 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe42a9200c0a8c7f627ef7520611715eae822562;p=emacs.git (arith_error) [POSIX_SIGNALS]: Don't reestablish handler. --- diff --git a/src/data.c b/src/data.c index 9d53d83425c..744e19db712 100644 --- a/src/data.c +++ b/src/data.c @@ -2711,7 +2711,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);