Commit 47c964bc authored by Jun Hiroe's avatar Jun Hiroe

Use boolean macro in kernel.c

parent 1f6d8d73
......@@ -182,7 +182,7 @@ mrb_f_block_given_p_m(mrb_state *mrb, mrb_value self)
bp = ci->stackent + 1;
ci--;
if (ci <= mrb->c->cibase) {
given_p = 0;
given_p = FALSE;
}
else {
/* block_given? called within block; check upper scope */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment