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

ruby-changes:12125

From: yugui <ko1@a...>
Date: Sun, 21 Jun 2009 19:34:47 +0900 (JST)
Subject: [ruby-changes:12125] Ruby:r23797 (ruby_1_9_1): merges r23729 from trunk into ruby_1_9_1.

yugui	2009-06-21 19:34:31 +0900 (Sun, 21 Jun 2009)

  New Revision: 23797

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=23797

  Log:
    merges r23729 from trunk into ruby_1_9_1.
    --
    * file.c (file_expand_path): drive letter is ascii only.
      [ruby-dev:38612]

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/file.c
    branches/ruby_1_9_1/version.h

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 23796)
+++ ruby_1_9_1/ChangeLog	(revision 23797)
@@ -1,3 +1,8 @@
+Thu Jun 18 01:29:16 2009  Nobuyoshi Nakada  <nobu@r...>
+
+	* file.c (file_expand_path): drive letter is ascii only.
+	  [ruby-dev:38612]
+
 Wed Jun 17 23:46:08 2009  Tadayoshi Funaba  <tadf@d...>
 
 	* rational.c (nurat_coerce): accepts Complex when the imag is
Index: ruby_1_9_1/version.h
===================================================================
--- ruby_1_9_1/version.h	(revision 23796)
+++ ruby_1_9_1/version.h	(revision 23797)
@@ -1,6 +1,6 @@
 #define RUBY_VERSION "1.9.1"
 #define RUBY_RELEASE_DATE "2009-05-22"
-#define RUBY_PATCHLEVEL 187
+#define RUBY_PATCHLEVEL 188
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
 #define RUBY_VERSION_TEENY 1
Index: ruby_1_9_1/file.c
===================================================================
--- ruby_1_9_1/file.c	(revision 23796)
+++ ruby_1_9_1/file.c	(revision 23797)
@@ -2665,6 +2665,7 @@
 	    memcpy(p, s, 2);
 	    p += 2;
 	    s += 2;
+	    rb_enc_associate_index(result, rb_usascii_encindex());
 	}
 	else {
 	    /* specified drive, but not full path */

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

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