summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--sprintf.c2
-rw-r--r--version.h2
3 files changed, 3 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 4a6c212b4f..7344ddb8e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,3 @@
-Thu Aug 16 04:40:37 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]
-
Thu Aug 16 04:39:15 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* array.c (rb_ary_initialize): should call rb_ary_modify() first.
@@ -12207,7 +12202,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-list:39218]
+ numbers if FZERO is specified. [ruby-dev:39218]
Tue Feb 17 23:40:34 2004 Guy Decoux <ts@moulon.inra.fr>
diff --git a/sprintf.c b/sprintf.c
index fbab4ba016..45d4d7a063 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -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';
diff --git a/version.h b/version.h
index 12d5e7ed70..a7e5971010 100644
--- a/version.h
+++ b/version.h
@@ -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