From cb6bbb36844667be216d9dd875c5dfcce1a83526 Mon Sep 17 00:00:00 2001 From: ocean Date: Mon, 17 May 2004 07:14:45 +0000 Subject: * numeric.c (flo_to_s): p 0.0 should be '0.0' not '0.0e+00'. * numeric.c (flo_to_s): the number of significand is correctly handled, there is assumption that DBL_DIG == 15 though. (p 0.00000000000000000001 was '9.999999999999999e-21', now is '1.0e-20') git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 00d44bfe2..7c822e8f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Mon May 17 16:04:06 Hirokazu Yamamoto + + * numeric.c (flo_to_s): p 0.0 should be '0.0' not '0.0e+00'. + + * numeric.c (flo_to_s): the number of significand is correctly handled, + there is assumption that DBL_DIG == 15 though. + (p 0.00000000000000000001 was '9.999999999999999e-21', now is + '1.0e-20') + Mon May 17 00:36:21 2004 why the lucky stiff * lib/yaml/baseemitter.rb (indent_text): was forcing a mod value -- cgit