comparison src/data.c @ 624:2bb7f23b7ea5

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Fri, 01 May 1992 06:20:46 +0000
parents 647732fc239f
children 40b255f55df3
comparison
equal deleted inserted replaced
623:347a8db13650 624:2bb7f23b7ea5
1957 signal (signo, arith_error); 1957 signal (signo, arith_error);
1958 #endif /* VMS */ 1958 #endif /* VMS */
1959 #ifdef BSD4_1 1959 #ifdef BSD4_1
1960 sigrelse (SIGFPE); 1960 sigrelse (SIGFPE);
1961 #else /* not BSD4_1 */ 1961 #else /* not BSD4_1 */
1962 sigsetmask (SIGEMPTYMASK); 1962 {
1963 int dummy;
1964
1965 EMACS_SIGSETMASK (SIGEMPTYMASK, dummy);
1966 }
1963 #endif /* not BSD4_1 */ 1967 #endif /* not BSD4_1 */
1964 1968
1965 Fsignal (Qarith_error, Qnil); 1969 Fsignal (Qarith_error, Qnil);
1966 } 1970 }
1967 1971