diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-02-01 16:28:14 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-02-01 16:28:14 +0000 |
commit | 8107587039a3ab096b5d0a183e36b20b8602c876 (patch) | |
tree | 736e328b9d7234d53119ac521708f11ea2d2628a | |
parent | 3b94b32dd93b301f629ae3434eda564ff3183a96 (diff) |
* parse.y (debug_lines, coverage): set file path encoding for coverage
result. [ruby-dev:44950]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34415 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | parse.y | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Thu Feb 2 01:24:34 2012 Yusuke Endoh <mame@tsg.ne.jp> + + * parse.y (debug_lines, coverage): set file path encoding for coverage + result. [ruby-dev:44950] + Wed Feb 1 14:38:31 2012 Akinori MUSHA <knu@iDaemons.org> * lib/tempfile.rb (Tempfile#unlink, Tempfile::Remover#call): Just @@ -5736,7 +5736,7 @@ debug_lines(const char *f) if (rb_const_defined_at(rb_cObject, script_lines)) { VALUE hash = rb_const_get_at(rb_cObject, script_lines); if (RB_TYPE_P(hash, T_HASH)) { - VALUE fname = rb_str_new2(f); + VALUE fname = rb_external_str_new_with_enc(f, strlen(f), rb_filesystem_encoding()); VALUE lines = rb_ary_new(); rb_hash_aset(hash, fname, lines); return lines; @@ -5750,7 +5750,7 @@ coverage(const char *f, int n) { VALUE coverages = rb_get_coverages(); if (RTEST(coverages) && RBASIC(coverages)->klass == 0) { - VALUE fname = rb_str_new2(f); + VALUE fname = rb_external_str_new_with_enc(f, strlen(f), rb_filesystem_encoding()); VALUE lines = rb_ary_new2(n); int i; RBASIC(lines)->klass = 0; |