summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-27 14:55:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-27 14:55:31 +0000
commit430c1d3fe4d107e141676fedf56ace98221b3b99 (patch)
tree1dc827ab08ad765103e6e41c8d74436843552ca3
parent5cf605b1d2769239de77fe9836cbd320b4482257 (diff)
* ext/iconv/iconv.c (Init_iconv): warn deprecated use.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29613 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/iconv/iconv.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6183d05250..90da171c55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Oct 27 23:55:27 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/iconv/iconv.c (Init_iconv): warn deprecated use.
+
Wed Oct 27 18:50:17 2010 NAKAMURA Usaku <usa@ruby-lang.org>
* bignum.c (rb_big2long, rb_big2ulong): rb2ulong() returns VALUE, but
diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c
index d2cb4ddf11..2aab1e92f4 100644
--- a/ext/iconv/iconv.c
+++ b/ext/iconv/iconv.c
@@ -1184,6 +1184,7 @@ Init_iconv(void)
{
VALUE rb_cIconv = rb_define_class("Iconv", rb_cData);
+ rb_warn("iconv will be deprecated in the future, use String#encode instead.");
rb_define_alloc_func(rb_cIconv, iconv_s_allocate);
rb_define_singleton_method(rb_cIconv, "open", iconv_s_open, -1);
rb_define_singleton_method(rb_cIconv, "iconv", iconv_s_iconv, -1);