From 214df72ada42435874953c15ff0e067f1444bfe1 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 26 Sep 2007 19:46:58 +0000 Subject: * encoding.c (rb_enc_associate_index): deal with ASCII compatible flags. * encoding.c (rb_enc_check): allow ASCII compatible strings. * parse.y (rb_intern_str): use ASCII encoding for ASCII string. * string.c (rb_enc_str_coderange): check for code-range. * string.c (rb_str_modify): clear code-range flags. * string.c (rb_str_hash, rb_str_eql): ASCII compatible strings are comparable. * include/ruby/encoding.h: added code-range flags. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index f0d66d6e5..b796771ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +Thu Sep 27 04:46:31 2007 Nobuyoshi Nakada + + * encoding.c (rb_enc_associate_index): deal with ASCII compatible + flags. + + * encoding.c (rb_enc_check): allow ASCII compatible strings. + + * parse.y (rb_intern_str): use ASCII encoding for ASCII string. + + * string.c (rb_enc_str_coderange): check for code-range. + + * string.c (rb_str_modify): clear code-range flags. + + * string.c (rb_str_hash, rb_str_eql): ASCII compatible strings are + comparable. + + * include/ruby/encoding.h: added code-range flags. + Thu Sep 27 04:40:47 2007 Nobuyoshi Nakada * gc.c (rb_mark_set): new function to mark keys. -- cgit