Skip to content

Commit 604de6c

Browse files
committed
merge -c 12192
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@12323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 53733aa commit 604de6c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
Wed May 23 03:12:17 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
26

37
* configure.in (LDFLAGS): prepend -L. instead appending it to

util.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -683,8 +683,8 @@ ruby_getcwd()
683683
*
684684
*/
685685

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
688688

689689
static const
690690
double powersOf10[] = { /* Table giving binary powers of 10. Entry */

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2007-05-23"
33
#define RUBY_VERSION_CODE 186
44
#define RUBY_RELEASE_CODE 20070523
5-
#define RUBY_PATCHLEVEL 15
5+
#define RUBY_PATCHLEVEL 16
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)