diff options
| author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-22 00:50:32 +0000 |
|---|---|---|
| committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-22 00:50:32 +0000 |
| commit | 93a0db20b61344b45f676cf8bfe9aa3c89e04d49 (patch) | |
| tree | 9695048ca75d0e05b42f4ccb4dac5d0822a0af12 | |
| parent | 9baa9e93101d8c43a486f1ca2f8aefaec29a7c67 (diff) | |
| download | ruby-93a0db20b61344b45f676cf8bfe9aa3c89e04d49.tar.gz ruby-93a0db20b61344b45f676cf8bfe9aa3c89e04d49.tar.xz ruby-93a0db20b61344b45f676cf8bfe9aa3c89e04d49.zip | |
* sprintf.c (rb_f_sprintf): sign bit extension should not be done
if FPLUS flag is specified. [ruby-list:39224]
numbers if FZERO is specified. [ruby-list:39218]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@13158 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, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Wed Aug 22 09:46:25 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * sprintf.c (rb_f_sprintf): sign bit extension should not be done + if FPLUS flag is specified. [ruby-list:39224] + Wed Aug 22 09:41:56 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * array.c (rb_ary_initialize): should call rb_ary_modify() first. @@ -13764,7 +13769,7 @@ Wed Feb 18 17:18:01 2004 WATANABE Hirofumi <eban@ruby-lang.org> Wed Feb 18 10:40:38 2004 Yukihiro Matsumoto <matz@ruby-lang.org> * sprintf.c (rb_f_sprintf): do not prepend dots for negative - numbers if FZERO is specified. [ruby-dev:39218] + numbers if FZERO is specified. [ruby-list:39218] Tue Feb 17 23:40:34 2004 Guy Decoux <ts@moulon.inra.fr> @@ -677,7 +677,7 @@ rb_f_sprintf(argc, argv) else { char c; - if (bignum && !RBIGNUM(val)->sign) + if (!sign && bignum && !RBIGNUM(val)->sign) c = sign_bits(base, p); else c = '0'; @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2007-08-22" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20070822 -#define RUBY_PATCHLEVEL 53 +#define RUBY_PATCHLEVEL 54 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 |
