* test/ruby/envutil.rb (EnvUtil#invoke_ruby): no needs to copy the
original ENV, since it's done in spawn automatically. [ruby-dev:41733] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a2fde3fc79
commit
6f95792347
@ -1,3 +1,9 @@
|
|||||||
|
Sat Jun 26 10:08:36 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/ruby/envutil.rb (EnvUtil#invoke_ruby): no needs to copy the
|
||||||
|
original ENV, since it's done in spawn automatically.
|
||||||
|
[ruby-dev:41733]
|
||||||
|
|
||||||
Sat Jun 26 08:44:22 2010 Yusuke Endoh <mame@tsg.ne.jp>
|
Sat Jun 26 08:44:22 2010 Yusuke Endoh <mame@tsg.ne.jp>
|
||||||
|
|
||||||
* NEWS (zlib): new methods. [ruby-dev:41706] [Bug #3472]
|
* NEWS (zlib): new methods. [ruby-dev:41706] [Bug #3472]
|
||||||
|
@ -78,7 +78,7 @@ module EnvUtil
|
|||||||
err_p.set_encoding(enc) if err_p
|
err_p.set_encoding(enc) if err_p
|
||||||
end
|
end
|
||||||
c = "C"
|
c = "C"
|
||||||
child_env = ENV.dup
|
child_env = {}
|
||||||
LANG_ENVS.each {|lc| child_env[lc] = c}
|
LANG_ENVS.each {|lc| child_env[lc] = c}
|
||||||
case args.first
|
case args.first
|
||||||
when Hash
|
when Hash
|
||||||
|
Loading…
x
Reference in New Issue
Block a user