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

ruby-changes:2337

From: ko1@a...
Date: 7 Nov 2007 03:36:25 +0900
Subject: [ruby-changes:2337] matz - Ruby:r13828 (trunk): * lib/rexml/encodings/SHIFT-JIS.rb (REXML::Encoding): place -x for

matz	2007-11-07 03:35:33 +0900 (Wed, 07 Nov 2007)

  New Revision: 13828

  Modified files:
    trunk/ChangeLog
    trunk/lib/rexml/encodings/SHIFT-JIS.rb
    trunk/version.h

  Log:
    * lib/rexml/encodings/SHIFT-JIS.rb (REXML::Encoding): place -x for
      nkf conversion.  a patch from <moonwolf AT moonwolf.com>.
      [ruby-dev:32183]

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/version.h?r1=13828&r2=13827
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/lib/rexml/encodings/SHIFT-JIS.rb?r1=13828&r2=13827
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=13828&r2=13827

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 13827)
+++ ChangeLog	(revision 13828)
@@ -1,3 +1,9 @@
+Wed Nov  7 03:32:38 2007  Yukihiro Matsumoto  <matz@r...>
+
+	* lib/rexml/encodings/SHIFT-JIS.rb (REXML::Encoding): place -x for
+	  nkf conversion.  a patch from <moonwolf AT moonwolf.com>.
+	  [ruby-dev:32183]
+
 Tue Nov  6 16:37:47 2007  Nobuyoshi Nakada  <nobu@r...>
 
 	* eval_load.c (loaded_feature_path): need to expand relative paths.
Index: lib/rexml/encodings/SHIFT-JIS.rb
===================================================================
--- lib/rexml/encodings/SHIFT-JIS.rb	(revision 13827)
+++ lib/rexml/encodings/SHIFT-JIS.rb	(revision 13828)
@@ -13,8 +13,8 @@
     rescue LoadError
       require 'nkf'
 
-      SJISTOU8 = '-Swm0'
-      U8TOSJIS = '-Wsm0'
+      SJISTOU8 = '-Swm0x'
+      U8TOSJIS = '-Wsm0x'
 
       def decode_sjis(str)
         NKF.nkf(SJISTOU8, str)
Index: version.h
===================================================================
--- version.h	(revision 13827)
+++ version.h	(revision 13828)
@@ -1,7 +1,7 @@
 #define RUBY_VERSION "1.9.0"
-#define RUBY_RELEASE_DATE "2007-11-06"
+#define RUBY_RELEASE_DATE "2007-11-07"
 #define RUBY_VERSION_CODE 190
-#define RUBY_RELEASE_CODE 20071106
+#define RUBY_RELEASE_CODE 20071107
 #define RUBY_PATCHLEVEL 0
 
 #define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
 #define RUBY_VERSION_TEENY 0
 #define RUBY_RELEASE_YEAR 2007
 #define RUBY_RELEASE_MONTH 11
-#define RUBY_RELEASE_DAY 6
+#define RUBY_RELEASE_DAY 7
 
 #ifdef RUBY_EXTERN
 RUBY_EXTERN const char ruby_version[];

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

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