From 1160f163099b138cf24239873cd74201886673de Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 25 Feb 2009 08:36:45 +0000 Subject: * io.c (sysopen_func, rb_sysopen_internal, rb_sysopen): open file by UTF-16'ed filename on Windows. * io.c (rb_file_open_generic, rb_io_s_sysopen, rb_io_reopen, argf_next_argv): follow above change. * io.c (rb_scan_open_args): no longer need to convert filepath here on Windows. * win32/wio32.c (rb_w32_wopen): new function to open file by UTF-16'ed filename. * win32/win32.c (rb_w32_open): call rb_w32_open(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22626 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 9d072c007..1004acbf2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +Wed Feb 25 17:31:32 2009 NAKAMURA Usaku + + * io.c (sysopen_func, rb_sysopen_internal, rb_sysopen): open file + by UTF-16'ed filename on Windows. + + * io.c (rb_file_open_generic, rb_io_s_sysopen, rb_io_reopen, + argf_next_argv): follow above change. + + * io.c (rb_scan_open_args): no longer need to convert filepath here on + Windows. + + * win32/wio32.c (rb_w32_wopen): new function to open file by UTF-16'ed + filename. + + * win32/win32.c (rb_w32_open): call rb_w32_open(). + Wed Feb 25 15:05:35 2009 NAKAMURA Usaku * win32/Makefile.sub (config.status): use un.rb as cp instead of -- cgit