From 2b6ab941234426b8891f1bad036fd75611038312 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 9 Mar 1998 07:57:00 +0000 Subject: 1.1b9_00 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'string.c') diff --git a/string.c b/string.c index 2b6295cfbc..6bd63c096c 100644 --- a/string.c +++ b/string.c @@ -1375,11 +1375,15 @@ str_inspect(str) while (p < pend) { UCHAR c = *p++; - if (ismbchar(c) && p < pend && ismbchar2(*p)) { + if (ismbchar(c) && p < pend) { CHECK(2); *b++ = c; *b++ = *p++; } + if (c & 0x80) { + CHECK(1); + *b++ = c; + } else if (c == '"') { CHECK(2); *b++ = '\\'; -- cgit v1.2.3