summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-05-13 20:17:54 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-05-13 20:17:54 +0900
commit0265b47833ca789b57d808ffdf1c594a65f1c1f4 (patch)
tree72e011bf537aaa9d0e7b75c1cf021ed0b7dc662e
parenta38f8fe606a526af56a0ed41113c7f9ac7cb5314 (diff)
downloadmruby-0265b47833ca789b57d808ffdf1c594a65f1c1f4.tar.gz
mruby-0265b47833ca789b57d808ffdf1c594a65f1c1f4.zip
remove unnecessary semicolons from a38f8f
-rw-r--r--mrbgems/mruby-bin-mirb/tools/mirb/mirb.c2
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, */