summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-14 13:16:29 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-14 13:16:29 +0000
commit45fd88877fe91f2d73c971e87e513fb445d502d9 (patch)
treef8de4092ab288a62febafb361576372c07190db1 /compile.c
parente72ae8cc0fe471b5426c7babbcf8f7191f3b6d48 (diff)
* compile.c (iseq_set_sequence): adjust indent.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34304 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/compile.c b/compile.c
index 7fc14d590f..da8ef32c58 100644
--- a/compile.c
+++ b/compile.c
@@ -1494,7 +1494,7 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *anchor)
if (last_line != iobj->line_no) {
line_info_table[k].line_no = last_line = iobj->line_no;
line_info_table[k].position = pos;
- k++;
+ k++;
}
pos += len;
break;
@@ -1527,7 +1527,7 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *anchor)
if (last_line != (unsigned int)adjust->line_no) {
line_info_table[k].line_no = last_line = adjust->line_no;
line_info_table[k].position = pos;
- k++;
+ k++;
}
generated_iseq[pos++] = BIN(adjuststack);
generated_iseq[pos++] = orig_sp - sp;
@@ -1537,7 +1537,7 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *anchor)
if (last_line != (unsigned int)adjust->line_no) {
line_info_table[k].line_no = last_line = adjust->line_no;
line_info_table[k].position = pos;
- k++;
+ k++;
}
generated_iseq[pos++] = BIN(jump);
generated_iseq[pos++] = 0;