]> git.eshelyaron.com Git - emacs.git/commitdiff
(arith_error): Don't reinstall sig handler if POSIX_SIGNALS.
authorKarl Heuer <kwzh@gnu.org>
Mon, 15 Jul 1996 21:36:19 +0000 (21:36 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 15 Jul 1996 21:36:19 +0000 (21:36 +0000)
src/data.c

index 88ed31a14bb6a403bde530d275e4cf8666485854..96a713daf98d6533ae57e9fc373f02b5ae4d4d6d 100644 (file)
@@ -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);