diff options
| author | Paul Eggert | 2012-09-09 09:06:33 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-09-09 09:06:33 -0700 |
| commit | f6196b87e1ceee0d56f2fe6f3aa2b9d1d82c44b0 (patch) | |
| tree | 3400f2f4898ce1fc39ad437faa5e55714129d30b /src/print.c | |
| parent | 8ed43f154827121c624a5a93808340618bd8f03f (diff) | |
| download | emacs-f6196b87e1ceee0d56f2fe6f3aa2b9d1d82c44b0.tar.gz emacs-f6196b87e1ceee0d56f2fe6f3aa2b9d1d82c44b0.zip | |
Assume C89 or later for math functions.
This simplifies the code, and makes it a bit smaller and faster,
and (most important) makes it easier to clean up signal handling
since we can stop worring about floating-point exceptions in
library code. That was a problem before C89, but the problem
went away many years ago on all practical Emacs targets.
* configure.ac (frexp, fmod): Remove checks for these functions,
as we now assume them.
(FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC, NO_MATHERR)
(HAVE_EXCEPTION):
Remove; no longer needed.
* admin/CPP-DEFINES (HAVE_FMOD, HAVE_FREXP, FLOAT_CHECK_DOMAIN)
(HAVE_INVERSE_HYPERBOLIC, NO_MATHERR): Remove.
* src/data.c, src/image.c, src/lread.c, src/print.c:
Don't include <math.h>; no longer needed.
* src/data.c, src/floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
might be autoconfigured, as that never happens.
* src/data.c (fmod):
* src/doprnt.c (DBL_MAX_10_EXP):
* src/print.c (DBL_DIG):
Remove. C89 or later always defines these.
* src/floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
(in_float, float_error_arg, float_error_arg2, float_error_fn_name)
(arith_error, domain_error, domain_error2):
Remove all this pre-C89 cruft. Do not include <errno.h> as that's
no longer needed -- we simply return what C returns. All uses removed.
(IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
the wrapped code.
(FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
Remove. All uses expanded, as these macros are no longer used
more than once and are now more trouble than they're worth.
(Ftan): Use tan, not sin / cos.
(Flogb): Assume C89 frexp.
(fmod_float): Assume C89 fmod.
(matherr) [HAVE_MATHERR]: Remove; no longer needed.
(init_floatfns): Remove. All uses removed.
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/print.c b/src/print.c index 72e536e4278..ab86ee1a8b5 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -45,15 +45,9 @@ static Lisp_Object Qtemp_buffer_setup_hook; | |||
| 45 | 45 | ||
| 46 | static Lisp_Object Qfloat_output_format; | 46 | static Lisp_Object Qfloat_output_format; |
| 47 | 47 | ||
| 48 | #include <math.h> | ||
| 49 | #include <float.h> | 48 | #include <float.h> |
| 50 | #include <ftoastr.h> | 49 | #include <ftoastr.h> |
| 51 | 50 | ||
| 52 | /* Default to values appropriate for IEEE floating point. */ | ||
| 53 | #ifndef DBL_DIG | ||
| 54 | #define DBL_DIG 15 | ||
| 55 | #endif | ||
| 56 | |||
| 57 | /* Avoid actual stack overflow in print. */ | 51 | /* Avoid actual stack overflow in print. */ |
| 58 | static ptrdiff_t print_depth; | 52 | static ptrdiff_t print_depth; |
| 59 | 53 | ||