From bb2bdc887c717d4770a113b19f1b685f5837d960 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 28 Sep 2007 19:27:10 +0000 Subject: * encoding.c (rb_enc_alias): allow encodings multiple aliases. * encoding.c (rb_enc_find_index): search the encoding which has the given name and return its index if found, or -1. * st.c (type_strcasehash): case-insensitive string hash type. * string.c (rb_str_force_encoding): force encoding of self. this name comes from [ruby-dev:31894] by Martin Duerst. [ruby-dev:31744] * include/ruby/encoding.h (rb_enc_find_index, rb_enc_associate_index): prototyped. * include/ruby/encoding.h (rb_enc_isctype): direct interface to ctype. * include/ruby/st.h (st_init_strcasetable): prototyped. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13556 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index f9f99cd96..e89ab8bc4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +Sat Sep 29 04:27:08 2007 Nobuyoshi Nakada + + * encoding.c (rb_enc_alias): allow encodings multiple aliases. + + * encoding.c (rb_enc_find_index): search the encoding which has the + given name and return its index if found, or -1. + + * st.c (type_strcasehash): case-insensitive string hash type. + + * string.c (rb_str_force_encoding): force encoding of self. this name + comes from [ruby-dev:31894] by Martin Duerst. [ruby-dev:31744] + + * include/ruby/encoding.h (rb_enc_find_index, rb_enc_associate_index): + prototyped. + + * include/ruby/encoding.h (rb_enc_isctype): direct interface to ctype. + + * include/ruby/st.h (st_init_strcasetable): prototyped. + Sat Sep 29 03:53:26 2007 Koichi Sasada * cont.c: Thread local storage should be fiber local. -- cgit