diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-24 23:56:11 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-24 23:56:11 +0000 |
commit | 2c54765b9e55101d48273938c60c2f71367f307b (patch) | |
tree | 2acd04cf6df894a0b9b242a9729b8de965ebd358 /error.c | |
parent | 96d0e68064a778d75df37e84cb7d3a490f77dfef (diff) | |
download | ruby-2c54765b9e55101d48273938c60c2f71367f307b.tar.gz ruby-2c54765b9e55101d48273938c60c2f71367f307b.tar.xz ruby-2c54765b9e55101d48273938c60c2f71367f307b.zip |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@4595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |