Merge pull request #931 from matsumoto-r/fix_some_indents

Adjust some indents
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-03-03 04:32:37 -08:00
7 changed files with 29 additions and 29 deletions
+8 -8
View File
@@ -1979,16 +1979,16 @@ codegen(codegen_scope *s, node *tree, int val)
}
n = tree->cdr->cdr;
if (n->car) {
p = (char*)n->car;
off = new_lit(s, mrb_str_new(s->mrb, p, strlen(p)));
codegen(s, tree->car, VAL);
genop(s, MKOP_ABx(OP_STRING, cursp(), off));
pop();
genop(s, MKOP_AB(OP_STRCAT, cursp(), cursp()+1));
p = (char*)n->car;
off = new_lit(s, mrb_str_new(s->mrb, p, strlen(p)));
codegen(s, tree->car, VAL);
genop(s, MKOP_ABx(OP_STRING, cursp(), off));
pop();
genop(s, MKOP_AB(OP_STRCAT, cursp(), cursp()+1));
}
if (n->cdr) {
char *p2 = (char*)n->cdr;
int off;
char *p2 = (char*)n->cdr;
int off;
push();
off = new_lit(s, mrb_str_new(s->mrb, p2, strlen(p2)));