ruby-changes:3596
From: ko1@a...
Date: Thu, 17 Jan 2008 21:48:55 +0900 (JST)
Subject: [ruby-changes:3596] nobu - Ruby:r15085 (trunk): * re.c (rb_char_to_option_kcode): fixed typo.
nobu 2008-01-17 21:48:23 +0900 (Thu, 17 Jan 2008)
New Revision: 15085
Modified files:
trunk/ChangeLog
trunk/re.c
Log:
* re.c (rb_char_to_option_kcode): fixed typo.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=15085&r2=15084&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/re.c?r1=15085&r2=15084&diff_format=u
Index: re.c
===================================================================
--- re.c (revision 15084)
+++ re.c (revision 15085)
@@ -188,7 +188,7 @@
*kcode = rb_enc_find_index("EUC-JP");
break;
case 's':
- *kcode = rb_enc_find_index("Shitf_JIS");
+ *kcode = rb_enc_find_index("Shift_JIS");
break;
case 'u':
*kcode = rb_enc_find_index("UTF-8");
Index: ChangeLog
===================================================================
--- ChangeLog (revision 15084)
+++ ChangeLog (revision 15085)
@@ -1,3 +1,7 @@
+Thu Jan 17 21:48:21 2008 Nobuyoshi Nakada <nobu@r...>
+
+ * re.c (rb_char_to_option_kcode): fixed typo.
+
Thu Jan 17 21:01:25 2008 Tadayoshi Funaba <tadf@d...>
* lib/date.rb (Date::Infinity#<=>): didn't work. A patch from
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/