зеркало из https://github.com/github/ruby.git
* ruby.c (ruby_set_argv): ARGV should be locale encoding.
[ruby-list:44861] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
d95d209033
Коммит
fe0446cc01
|
@ -1,3 +1,8 @@
|
||||||
|
Sun Apr 27 08:06:15 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* ruby.c (ruby_set_argv): ARGV should be locale encoding.
|
||||||
|
[ruby-list:44861]
|
||||||
|
|
||||||
Sun Apr 27 01:46:29 2008 Tanaka Akira <akr@fsij.org>
|
Sun Apr 27 01:46:29 2008 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* lib/open3.rb (Open3.popen3w): removed.
|
* lib/open3.rb (Open3.popen3w): removed.
|
||||||
|
|
2
ruby.c
2
ruby.c
|
@ -1457,6 +1457,7 @@ void
|
||||||
ruby_set_argv(int argc, char **argv)
|
ruby_set_argv(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
rb_encoding *enc = rb_locale_encoding();
|
||||||
VALUE av = rb_argv;
|
VALUE av = rb_argv;
|
||||||
|
|
||||||
#if defined(USE_DLN_A_OUT)
|
#if defined(USE_DLN_A_OUT)
|
||||||
|
@ -1468,6 +1469,7 @@ ruby_set_argv(int argc, char **argv)
|
||||||
rb_ary_clear(av);
|
rb_ary_clear(av);
|
||||||
for (i = 0; i < argc; i++) {
|
for (i = 0; i < argc; i++) {
|
||||||
VALUE arg = rb_tainted_str_new2(argv[i]);
|
VALUE arg = rb_tainted_str_new2(argv[i]);
|
||||||
|
rb_enc_associate(arg, enc);
|
||||||
|
|
||||||
OBJ_FREEZE(arg);
|
OBJ_FREEZE(arg);
|
||||||
rb_ary_push(av, arg);
|
rb_ary_push(av, arg);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#define RUBY_VERSION "1.9.0"
|
#define RUBY_VERSION "1.9.0"
|
||||||
#define RUBY_RELEASE_DATE "2008-04-26"
|
#define RUBY_RELEASE_DATE "2008-04-27"
|
||||||
#define RUBY_VERSION_CODE 190
|
#define RUBY_VERSION_CODE 190
|
||||||
#define RUBY_RELEASE_CODE 20080426
|
#define RUBY_RELEASE_CODE 20080427
|
||||||
#define RUBY_PATCHLEVEL 0
|
#define RUBY_PATCHLEVEL 0
|
||||||
|
|
||||||
#define RUBY_VERSION_MAJOR 1
|
#define RUBY_VERSION_MAJOR 1
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
#define RUBY_VERSION_TEENY 0
|
#define RUBY_VERSION_TEENY 0
|
||||||
#define RUBY_RELEASE_YEAR 2008
|
#define RUBY_RELEASE_YEAR 2008
|
||||||
#define RUBY_RELEASE_MONTH 4
|
#define RUBY_RELEASE_MONTH 4
|
||||||
#define RUBY_RELEASE_DAY 26
|
#define RUBY_RELEASE_DAY 27
|
||||||
|
|
||||||
#ifdef RUBY_EXTERN
|
#ifdef RUBY_EXTERN
|
||||||
RUBY_EXTERN const char ruby_version[];
|
RUBY_EXTERN const char ruby_version[];
|
||||||
|
|
Загрузка…
Ссылка в новой задаче