Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b0a1044b
Commit
b0a1044b
authored
Oct 29, 1997
by
Paul Eggert
Browse files
(DBL_MIN): Use workaround if DBL_MIN_REPLACEMENT is defined.
parent
4dc1a160
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
src/print.c
src/print.c
+9
-1
No files found.
src/print.c
View file @
b0a1044b
/* Lisp object printing and output streams.
Copyright (C) 1985, 86, 88, 93, 94, 95 Free Software Foundation, Inc.
Copyright (C) 1985, 86, 88, 93, 94, 95
, 97
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -73,6 +73,14 @@ Lisp_Object Vfloat_output_format, Qfloat_output_format;
#ifndef DBL_DIG
#define DBL_DIG 15
#endif
#ifndef DBL_MIN
#define DBL_MIN 2.2250738585072014e-308
#endif
#ifdef DBL_MIN_REPLACEMENT
#undef DBL_MIN
#define DBL_MIN DBL_MIN_REPLACEMENT
#endif
/* Define DOUBLE_DIGITS_BOUND, an upper bound on the number of decimal digits
needed to express a float without losing information.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment