diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-13 20:17:54 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-13 20:17:54 +0900 |
| commit | 0265b47833ca789b57d808ffdf1c594a65f1c1f4 (patch) | |
| tree | 72e011bf537aaa9d0e7b75c1cf021ed0b7dc662e | |
| parent | a38f8fe606a526af56a0ed41113c7f9ac7cb5314 (diff) | |
| download | mruby-0265b47833ca789b57d808ffdf1c594a65f1c1f4.tar.gz mruby-0265b47833ca789b57d808ffdf1c594a65f1c1f4.zip | |
remove unnecessary semicolons from a38f8f
| -rw-r--r-- | mrbgems/mruby-bin-mirb/tools/mirb/mirb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c b/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c index b389db7bc..b1b8767bc 100644 --- a/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +++ b/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c @@ -102,7 +102,7 @@ is_code_block_open(struct mrb_parser_state *parser) case EXPR_BEG: /* beginning of a statement, */ /* that means previous line ended */ - ;;code_block_open = FALSE; + code_block_open = FALSE; break; case EXPR_DOT: /* a message dot was the last token, */ |
