comparison src/data.c @ 348:17ca8766781a

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Wed, 24 Jul 1991 00:06:21 +0000
parents 25114d2b73e3
children a54a07015253
comparison
equal deleted inserted replaced
347:6506740942fa 348:17ca8766781a
25 #include "puresize.h" 25 #include "puresize.h"
26 26
27 #ifndef standalone 27 #ifndef standalone
28 #include "buffer.h" 28 #include "buffer.h"
29 #endif 29 #endif
30
31 #include "emacssignal.h"
30 32
31 #ifdef LISP_FLOAT_TYPE 33 #ifdef LISP_FLOAT_TYPE
32 #include <math.h> 34 #include <math.h>
33 #endif /* LISP_FLOAT_TYPE */ 35 #endif /* LISP_FLOAT_TYPE */
34 36
1944 signal (signo, arith_error); 1946 signal (signo, arith_error);
1945 #endif /* VMS */ 1947 #endif /* VMS */
1946 #ifdef BSD4_1 1948 #ifdef BSD4_1
1947 sigrelse (SIGFPE); 1949 sigrelse (SIGFPE);
1948 #else /* not BSD4_1 */ 1950 #else /* not BSD4_1 */
1949 sigsetmask (0); 1951 sigsetmask (SIGEMPTYMASK);
1950 #endif /* not BSD4_1 */ 1952 #endif /* not BSD4_1 */
1951 1953
1952 Fsignal (Qarith_error, Qnil); 1954 Fsignal (Qarith_error, Qnil);
1953 } 1955 }
1954 1956