Merge pull request #3437 from eboda/master

Fix interpolation escaping in String.inspect
This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-02-08 08:58:41 +09:00
committed by GitHub
+1 -1
View File
@@ -2644,7 +2644,7 @@ mrb_str_inspect(mrb_state *mrb, mrb_value str)
}
#endif
c = *p;
if (c == '"'|| c == '\\' || (c == '#' && IS_EVSTR(p, pend))) {
if (c == '"'|| c == '\\' || (c == '#' && IS_EVSTR(p+1, pend))) {
buf[0] = '\\'; buf[1] = c;
mrb_str_cat(mrb, result, buf, 2);
continue;