aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--iseq.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b5eb7e536b..fc0cfcc8e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 21 12:49:11 2014 Eric Wong <e@80x24.org>
+
+ * iseq.c (rb_iseq_defined_string): trim redundant semi-colon
+
Sun Sep 21 12:19:29 2014 Eric Wong <e@80x24.org>
* file.c (rb_find_file_ext_safe): clear tmp buffer on failure
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);