mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* missing/vsnprintf.c (BSD_vfprintf): commented out code which has
no effect at all. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
68b3cd3ea2
commit
bb8a49812a
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Mar 12 05:09:56 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* missing/vsnprintf.c (BSD_vfprintf): commented out code which has
|
||||
no effect at all.
|
||||
|
||||
Thu Mar 12 02:10:57 2009 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* configure.in: strip spaces from ruby_version.
|
||||
|
|
|
@ -1047,7 +1047,7 @@ number: if ((dprec = prec) >= 0)
|
|||
ox[0] = *cp++;
|
||||
ox[1] = '.';
|
||||
PRINT(ox, 2);
|
||||
if (_double || flags & ALT == 0) {
|
||||
if (_double /*|| flags & ALT == 0*/) {
|
||||
PRINT(cp, ndig-1);
|
||||
} else /* 0.[0..] */
|
||||
/* __dtoa irregularity */
|
||||
|
|
Loading…
Reference in a new issue