From 2830624410855384029770da5d42af9995a327a6 Mon Sep 17 00:00:00 2001 From: Yukihiro Matsumoto Date: Thu, 4 Oct 2012 14:20:33 +0900 Subject: fix indent of mrb_exc_raise --- src/error.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/error.c b/src/error.c index 1f352c853..5570d35f9 100644 --- a/src/error.c +++ b/src/error.c @@ -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 -- cgit v1.2.3