summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-04 07:16:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-04 07:16:04 +0000
commit7b40e69d7fb8e8a623ef6e65c127f15570b549e4 (patch)
tree8bf6b9ceb8deccd44e943a34458c142612ec4990 /parse.y
parent6b7eba512d5e0baf4af852256859a6a139135ac9 (diff)
downloadruby-7b40e69d7fb8e8a623ef6e65c127f15570b549e4.tar.gz
ruby-7b40e69d7fb8e8a623ef6e65c127f15570b549e4.tar.xz
ruby-7b40e69d7fb8e8a623ef6e65c127f15570b549e4.zip
* parse.y (reg_compile_gen): copy encoding from source string.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index b3c3bc98f..b81e37ee0 100644
--- a/parse.y
+++ b/parse.y
@@ -8170,6 +8170,7 @@ reg_compile_gen(struct parser_params* parser, VALUE str, int options)
compile_error(PARSER_ARG "%s", RSTRING_PTR(re));
return Qnil;
}
+ rb_enc_copy(re, str);
return re;
}