diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-15 20:56:12 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-15 20:56:12 +0000 |
commit | 4f31a56813a51f58c7c9fe75be8c6a03a2b896cb (patch) | |
tree | c31ca9166dfc8c4b96591af71a7dd417a05fe384 | |
parent | 65d9d2bb9278c05afccd2489ccc9b546b71650b5 (diff) | |
parent | d4220e5b0e5f940170f309cfdb9b436f811fee26 (diff) |
sorry. I made wrong tags.v1_8_5_64
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_5_64@13000 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | sprintf.c | 2 | ||||
-rw-r--r-- | version.h | 2 |
3 files changed, 3 insertions, 8 deletions
@@ -1,8 +1,3 @@ -Thu Aug 16 04:40:37 2007 Nobuyoshi Nakada <[email protected]> - - * sprintf.c (rb_f_sprintf): sign bit extension should not be done - if FPLUS flag is specified. [ruby-list:39224] - Thu Aug 16 04:39:15 2007 Yukihiro Matsumoto <[email protected]> * array.c (rb_ary_initialize): should call rb_ary_modify() first. @@ -12207,7 +12202,7 @@ Wed Feb 18 17:18:01 2004 WATANABE Hirofumi <[email protected]> Wed Feb 18 10:40:38 2004 Yukihiro Matsumoto <[email protected]> * sprintf.c (rb_f_sprintf): do not prepend dots for negative - numbers if FZERO is specified. [ruby-list:39218] + numbers if FZERO is specified. [ruby-dev:39218] Tue Feb 17 23:40:34 2004 Guy Decoux <[email protected]> @@ -693,7 +693,7 @@ rb_f_sprintf(argc, argv) else { char c; - if (!sign && bignum && !RBIGNUM(val)->sign) + if (bignum && !RBIGNUM(val)->sign) c = sign_bits(base, p); else c = '0'; @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2007-08-16" #define RUBY_VERSION_CODE 185 #define RUBY_RELEASE_CODE 20070816 -#define RUBY_PATCHLEVEL 65 +#define RUBY_PATCHLEVEL 64 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 |