summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 4 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index bf0cd7388..88e72de4b 100644
--- a/parse.y
+++ b/parse.y
@@ -9008,6 +9008,10 @@ rb_intern3(const char *name, long len, rb_encoding *enc)
if (st_lookup(global_symbols.sym_id, str, (st_data_t *)&id))
return id;
+ if (rb_cString && !rb_enc_asciicompat(enc)) {
+ id = ID_JUNK;
+ goto new_id;
+ }
last = len-1;
id = 0;
switch (*m) {