aboutsummaryrefslogtreecommitdiffstats
path: root/iseq.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-21 03:50:23 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-21 03:50:23 +0000
commit39fd4a87e8d745cdb76fd3573a9c59e82e7a7ece (patch)
tree4cbf274b15fd06cf0d0d84a1b33da189f94ffb63 /iseq.c
parent84b90070c6111c5a69648819d36d2bc9e6bac17f (diff)
downloadruby-39fd4a87e8d745cdb76fd3573a9c59e82e7a7ece.tar.gz
iseq.c (rb_iseq_defined_string): trim redundant semi-colon
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index b6bdc261b4..6b89ea5daa 100644
--- a/iseq.c
+++ b/iseq.c
@@ -2063,7 +2063,7 @@ rb_iseq_defined_string(enum defined_type type)
}
str = defs[type-1];
if (!str) {
- str = rb_str_new_cstr(estr);;
+ str = rb_str_new_cstr(estr);
OBJ_FREEZE(str);
defs[type-1] = str;
rb_gc_register_mark_object(str);