Commit 28306244 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

fix indent of mrb_exc_raise

parent 3a6b6518
......@@ -208,12 +208,12 @@ exc_debug_info(mrb_state *mrb, struct RObject *exc)
void
mrb_exc_raise(mrb_state *mrb, mrb_value exc)
{
mrb->exc = (struct RObject*)mrb_object(exc);
exc_debug_info(mrb, mrb->exc);
if (!mrb->jmp) {
abort();
}
longjmp(*(jmp_buf*)mrb->jmp, 1);
mrb->exc = (struct RObject*)mrb_object(exc);
exc_debug_info(mrb, mrb->exc);
if (!mrb->jmp) {
abort();
}
longjmp(*(jmp_buf*)mrb->jmp, 1);
}
void
......
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