File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ Wed May 23 03:25:13 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
+
3
+ * util.c (ruby_strtod): exponent is radix 10. [ruby-talk:248272]
4
+
1
5
Wed May 23 03:12:17 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
6
3
7
* configure.in (LDFLAGS): prepend -L. instead appending it to
Original file line number Diff line number Diff line change @@ -683,8 +683,8 @@ ruby_getcwd()
683
683
*
684
684
*/
685
685
686
- #define MDMINEXPT DBL_MIN_EXP
687
- #define MDMAXEXPT DBL_MAX_EXP
686
+ #define MDMINEXPT DBL_MIN_10_EXP
687
+ #define MDMAXEXPT DBL_MAX_10_EXP
688
688
689
689
static const
690
690
double powersOf10 [] = { /* Table giving binary powers of 10. Entry */
Original file line number Diff line number Diff line change 2
2
#define RUBY_RELEASE_DATE "2007-05-23"
3
3
#define RUBY_VERSION_CODE 186
4
4
#define RUBY_RELEASE_CODE 20070523
5
- #define RUBY_PATCHLEVEL 15
5
+ #define RUBY_PATCHLEVEL 16
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
You can’t perform that action at this time.
0 commit comments