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