[前][次][番号順一覧][スレッド一覧]

ruby-changes:7773

From: naruse <ko1@a...>
Date: Thu, 11 Sep 2008 19:16:05 +0900 (JST)
Subject: [ruby-changes:7773] Ruby:r19294 (trunk): * ext/iconv/iconv.c: add attention for machine independent.

naruse	2008-09-11 19:10:16 +0900 (Thu, 11 Sep 2008)

  New Revision: 19294

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19294

  Log:
    * ext/iconv/iconv.c: add attention for machine independent.

  Modified files:
    trunk/ChangeLog
    trunk/ext/iconv/iconv.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 19293)
+++ ChangeLog	(revision 19294)
@@ -1,3 +1,7 @@
+Thu Sep 11 19:09:25 2008  NARUSE, Yui  <naruse@r...>
+
+	* ext/iconv/iconv.c: add attention for machine independent.
+
 Thu Sep 11 15:23:26 2008  Yukihiro Matsumoto  <matz@r...>
 
 	* bignum.c (bigdivrem): adjust length for division and remainder.
Index: ext/iconv/iconv.c
===================================================================
--- ext/iconv/iconv.c	(revision 19293)
+++ ext/iconv/iconv.c	(revision 19294)
@@ -66,6 +66,12 @@
  * 4. Shorthand for (3).
  *
  *      Iconv.iconv(to, from, *input.to_a)
+ *
+ * == Attentions
+ *
+ * Even if some extentions of implementation dependent are useful,
+ * DON'T USE those extentions in libraries and scripts to widely distribute.
+ * If you want to use those feature, use String#encode.
  */
 
 /* Invalid value for iconv_t is -1 but 0 for VALUE, I hope VALUE is

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]