aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-10-12 06:08:01 +0000
committerPavel Janík2001-10-12 06:08:01 +0000
commit311346bb318b33822a0c3db4e7509780a5ad092f (patch)
tree4675a0c39ef6d9496997c9c68381960257eaf8e6 /src
parent01e85d6147700e32a642ef98ca674ed844e91e88 (diff)
downloademacs-311346bb318b33822a0c3db4e7509780a5ad092f.tar.gz
emacs-311346bb318b33822a0c3db4e7509780a5ad092f.zip
float_error() is defined iff FLOAT_CATCH_SIGILL is defined.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/floatfns.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4bf6ae794e2..56b2587172c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12001-10-12 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * floatfns.c: float_error() is defined iff FLOAT_CATCH_SIGILL is
4 defined.
5
12001-10-11 Stefan Monnier <monnier@cs.yale.edu> 62001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * xfns.c (x_create_bitmap_from_file, x_find_image_file): 8 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
diff --git a/src/floatfns.c b/src/floatfns.c
index 926235f5fe2..f8a3e6f369d 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -122,7 +122,9 @@ extern int errno;
122#define sinh(x) ((exp(x)-exp(-x))*0.5) 122#define sinh(x) ((exp(x)-exp(-x))*0.5)
123#endif /* VMS */ 123#endif /* VMS */
124 124
125#ifdef FLOAT_CATCH_SIGILL
125static SIGTYPE float_error (); 126static SIGTYPE float_error ();
127#endif
126 128
127/* Nonzero while executing in floating point. 129/* Nonzero while executing in floating point.
128 This tells float_error what to do. */ 130 This tells float_error what to do. */