summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-11 17:51:05 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-11 17:51:05 +0000
commit9d4ff5aefc8834ce1a80bc5508181fa88f8db416 (patch)
tree0dbc66a4f2f91ebb55374b053a9bba331f25fb28 /object.c
parentf1c8f497232d7850d88e24ac54d7dc725c8ca6b0 (diff)
merge revision(s) 57407: [Backport #13145]
object.c: no TypeError at Symbol * object.c (special_object_p): uninterned Symbol also should not raise a TypeError but return itself instead, as well as interned Symbols. [ruby-core:79216] [Bug #13145] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@57869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/object.c b/object.c
index 5f0055fb5a..98d2197c2d 100644
--- a/object.c
+++ b/object.c
@@ -304,6 +304,7 @@ special_object_p(VALUE obj)
switch (BUILTIN_TYPE(obj)) {
case T_BIGNUM:
case T_FLOAT:
+ case T_SYMBOL:
return TRUE;
default:
return FALSE;