comparison src/data.c @ 638:40b255f55df3

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Sun, 10 May 1992 18:15:10 +0000
parents 2bb7f23b7ea5
children 70b112526394
comparison
equal deleted inserted replaced
637:639afe138172 638:40b255f55df3
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 { 1962 sigsetmask (SIGEMPTYMASK);
1963 int dummy;
1964
1965 EMACS_SIGSETMASK (SIGEMPTYMASK, dummy);
1966 }
1967 #endif /* not BSD4_1 */ 1963 #endif /* not BSD4_1 */
1968 1964
1969 Fsignal (Qarith_error, Qnil); 1965 Fsignal (Qarith_error, Qnil);
1970 } 1966 }
1971 1967