1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/nkf/nkf.c: rdoc update.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-01-12 03:46:13 +00:00
parent ea78055b08
commit 86da4be028
2 changed files with 5 additions and 6 deletions

View file

@ -1,5 +1,10 @@
Sat Jan 12 12:44:36 2008 NARUSE, Yui <naruse@ruby-lang.org>
* ext/nkf/nkf.c: rdoc update.
Sat Jan 12 12:01:49 2008 Tadayoshi Funaba <tadf@dotrb.org>
* lib/date.rb, lib/date/format.rb: tuning for performance.
Sat Jan 12 11:29:45 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>

View file

@ -133,10 +133,6 @@ int nkf_split_options(const char *arg)
*
* require 'nkf'
* output = NKF.nkf("-s", input)
*
* *Note*
* By default, nkf decodes MIME encoded string.
* If you want not to decode input, use NKF.nkf with <b>-m0</b> flag.
*/
static VALUE
@ -472,9 +468,7 @@ rb_nkf_guess(VALUE obj, VALUE src)
void
Init_nkf()
{
/* hoge */
VALUE mNKF = rb_define_module("NKF");
/* hoge */
rb_define_module_function(mNKF, "nkf", rb_nkf_convert, 2);
rb_define_module_function(mNKF, "guess", rb_nkf_guess, 1);