[#39052] Fwd: [redmine4ruby-lang:253] [Bug #1914] ruby-1.9.1-p243 failed to build from source on aix 5.3 with gcc 4.2.0 — Yugui <yugui@...>

Redmine管理用プロジェクトに報告されてしまったので転送します。

12 messages 2009/08/09
[#39264] Re: Fwd: [redmine4ruby-lang:253] [Bug #1914] ruby-1.9.1-p243 failed to build from source on aix 5.3 with gcc 4.2.0 — Yutaka Kanemoto <kinpoco@...> 2009/09/08

金本と申します。

[#39107] [Bug #1952] cannot stop with Ctrl+C — Usaku NAKAMURA <redmine@...>

Bug #1952: cannot stop with Ctrl+C

14 messages 2009/08/18

[#39167] [Bug #2000] Change the license to "GPLv2+ or Ruby's original". — Mamoru Tasaka <redmine@...>

Bug #2000: Change the license to "GPLv2+ or Ruby's original".

11 messages 2009/08/26

[#39193] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Tanaka Akira <akr@...>

In article <200908281827.n7SIRbaX003476@ci.ruby-lang.org>,

16 messages 2009/08/29
[#39194] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Nobuyoshi Nakada <nobu@...> 2009/08/29

なかだです。

[#39195] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Tanaka Akira <akr@...> 2009/08/29

In article <4a988633.9553f10a.4496.483e@mx.google.com>,

[#39196] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Nobuyoshi Nakada <nobu@...> 2009/08/29

なかだです。

[#39197] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Tanaka Akira <akr@...> 2009/08/29

In article <4a989f76.1602be0a.3de4.1131@mx.google.com>,

[#39198] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Yukihiro Matsumoto <matz@...> 2009/08/29

まつもと ゆきひろです

[#39206] Re: [ruby-cvs:31917] Ruby:r24699 (trunk): * lib/tmpdir.rb (Dir.mktmpdir): removed thread race condition. — Nobuyoshi Nakada <nobu@...> 2009/08/31

なかだです。

[ruby-dev:38976] [Bug #1503] -Kuをつけた時、/[#{s}]/n と Regexp.new("[#{s}]",nil,"n") で実行結果が異なる

From: Takashi Tamura <redmine@...>
Date: 2009-08-01 08:08:32 UTC
List: ruby-dev #38976
チケット #1503 が更新されました。 (by Takashi Tamura)


こんにちは、sheepman です。

> 一方、/[#{s}]/nは
> /<NUL>-<US><DEL>-<\xFF>/nとソースコードにそのままリテラルで書くのと、
> 基本的には同じなので、当然invalid multibyte char扱いでエラーになります。

エンコーディングが適切に設定されていれば、たとえスクリプトエンコーディングと
異なっていても問題ないみたいです。この例の場合、s のエンコーディングが
ASCII-8BIT なら ok のようです。

 $ cat e02.rb
 # coding: euc-jp 
 s = "\x00-\x1f\x7f-\xff".force_encoding("ASCII-8BIT")
 p /[#{s}]/.encoding
 p /[#{s}]/n.encoding

 $ ruby-1.9 -v
 ruby 1.9.2dev (2009-08-01 trunk 24343) [i686-linux]

 $ ruby-1.9 e02.rb
 #<Encoding:ASCII-8BIT>
 #<Encoding:ASCII-8BIT>

ここからが質問です。

/#{s}/n は /#{s.dup.force_encoding("ASCII-8BIT")}/ と同じ動作をするように
しても良いように思えるのですが、そうしない理由はなんでしょうか?
つまり「Regexp.new(s, nil, "n") は Regexp.new(s.dup.force_encoding("ASCII-8BIT"))と同じだけど、
/#{s}/n は /#{s.dup.force_encoding("ASCII-8BIT")}/ と同じではない」理由が知りたいです。

 
----------------------------------------
http://redmine.ruby-lang.org/issues/show/1503

----------------------------------------
http://redmine.ruby-lang.org

In This Thread