* error.c (rb_warn_m): should not warn if -W0 is specified.

[ruby-talk:82675]

* util.c (ruby_strtod): skip preceding zeros before counting
  digits in the mantissa. (ruby-bugs PR#1181)


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2003-09-24 23:56:11 +00:00
Родитель 5747a6c480
Коммит 94bfebb3fa
4 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -38,6 +38,11 @@ Mon Sep 23 23:10:16 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* test/logger/test_logger.rb: ditto.
Tue Sep 23 20:47:51 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* error.c (rb_warn_m): should not warn if -W0 is specified.
[ruby-talk:82675]
Mon Sep 22 21:28:57 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* MANIFEST: updated.
@ -46,6 +51,11 @@ Mon Sep 22 19:22:26 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
* configure.in (AC_CHECK_FUNCS): add setuid and setgid.
Mon Sep 22 12:34:55 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* util.c (ruby_strtod): skip preceding zeros before counting
digits in the mantissa. (ruby-bugs PR#1181)
Sun Sep 21 04:12:36 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
* ext/openssl/ossl_ocsp.c (ossl_ocspreq_initialize): the argument

Просмотреть файл

@ -166,6 +166,7 @@ static VALUE
rb_warn_m(self, mesg)
VALUE self, mesg;
{
if (NIL_P(ruby_verbose)) return;
rb_io_write(rb_stderr, mesg);
rb_io_write(rb_stderr, rb_default_rs);
return mesg;

1
eval.c
Просмотреть файл

@ -9902,6 +9902,7 @@ rb_thread_atfork()
if (rb_thread_alone()) return;
FOREACH_THREAD(th) {
if (th != curr_thread) {
rb_warn("fork terminates thread at %s:%s", th->node->nd_file, nd_line(th->node));
rb_thread_die(th);
}
}

7
util.c
Просмотреть файл

@ -757,6 +757,13 @@ ruby_strtod(string, endPtr)
sign = FALSE;
}
/* skip preceding zeros */
if (*p == '0') {
while (*p == '0')
p++;
p--;
}
/*
* Count the number of digits in the mantissa (including the decimal
* point), and also locate the decimal point.