From fe4de8b4b8a614e6fdd04766a45b996346d9e028 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 19 Jul 2003 17:26:04 +0000 Subject: * string.c (rb_str_match2): add warning to "~string". [ruby-list:37751] * lib/net/ftp.rb (Net::FTP::open): takes block. suggested by Gavin Sinclair in [ruby-core:01237]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4105 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'string.c') diff --git a/string.c b/string.c index 692a158c09..b2761f04eb 100644 --- a/string.c +++ b/string.c @@ -1063,6 +1063,9 @@ rb_str_match2(str) VALUE str; { StringValue(str); +#if RUBY_VERSION_CODE < 181 + rb_warn("~string will be obsolete; use explicit regexp"); +#endif return rb_reg_match2(rb_reg_regcomp(rb_reg_quote(str))); } -- cgit v1.2.3