summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-09 05:38:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-09 05:38:59 +0000
commite326946b35c0e1eb022e381206c2df292d9c2761 (patch)
treeda6200c766c375c878a4675cd40519a68fae546b /string.c
parentb9c6120e079075e0bb2b4acde395d25e592c3fe2 (diff)
* string.c (rb_str_inspect): escape # which starts an expression
substitution. fixed: [ruby-core:03922] * string.c (rb_str_dump): not escape # which isn't a substitution. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/string.c b/string.c
index 7f7778d905..b566e7159f 100644
--- a/string.c
+++ b/string.c
@@ -2570,6 +2570,8 @@ rb_str_to_s(str)
return str;
}
+#define IS_EVSTR(p,e) ((p) < (e) && (*(p) == '$' || *(p) == '@' || *(p) == '{'))
+
/*
* call-seq:
* str.inspect => string
@@ -2598,7 +2600,7 @@ rb_str_inspect(str)
rb_str_buf_cat(result, p - 1, len);
p += len - 1;
}
- else if (c == '"'|| c == '\\') {
+ else if (c == '"'|| c == '\\' || (c == '#' && IS_EVSTR(p, pend))) {
s[0] = '\\'; s[1] = c;
rb_str_buf_cat(result, s, 2);
}
@@ -2670,11 +2672,15 @@ rb_str_dump(str)
switch (c) {
case '"': case '\\':
case '\n': case '\r':
- case '\t': case '\f': case '#':
+ case '\t': case '\f':
case '\013': case '\007': case '\033':
len += 2;
break;
+ case '#':
+ len += IS_EVSTR(p, pend) ? 2 : 1;
+ break;
+
default:
if (ISPRINT(c)) {
len++;
@@ -2699,7 +2705,7 @@ rb_str_dump(str)
*q++ = c;
}
else if (c == '#') {
- *q++ = '\\';
+ if (IS_EVSTR(p, pend)) *q++ = '\\';
*q++ = '#';
}
else if (ISPRINT(c)) {