summaryrefslogtreecommitdiff
path: root/sample/test.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-17 06:22:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-17 06:22:58 +0000
commita6db50e02b3a93eb9b475d65cb0e9d0e96a46e1c (patch)
treedbe810f986a5dfd4b0ce5335b3cdb71f5edbbfe9 /sample/test.rb
parent53ecede90b163d37c3e2b5b4f845be23eabb2caa (diff)
* sample/test.rb (valid_syntax?): should not capture BOM.
* test/ruby/test_system.rb (TestSystem#valid_syntax?): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/test.rb')
-rw-r--r--sample/test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/test.rb b/sample/test.rb
index b1560d3105..f3ac9c4a49 100644
--- a/sample/test.rb
+++ b/sample/test.rb
@@ -1931,7 +1931,7 @@ end
def valid_syntax?(code, fname)
p fname
code = code.dup.force_encoding("ascii-8bit")
- code.sub!(/\A(\xef\xbb\xbf)?(\s*\#.*$)*(\n)?/n) {
+ code.sub!(/\A(?:\xef\xbb\xbf)?(\s*\#.*$)*(\n)?/n) {
"#$&#{"\n" if $1 && !$2}BEGIN{throw tag, :ok}\n"
}
code.force_encoding("us-ascii")