summaryrefslogtreecommitdiffhomepage
path: root/src/error.c
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-10-04 14:20:33 +0900
committerYukihiro Matsumoto <[email protected]>2012-10-04 14:20:33 +0900
commit2830624410855384029770da5d42af9995a327a6 (patch)
tree801ec83124453cfe88c631c815af363e1251dde2 /src/error.c
parent3a6b6518d66ff0acf11a8163404eb4e9c7bbcf1b (diff)
downloadmruby-2830624410855384029770da5d42af9995a327a6.tar.gz
mruby-2830624410855384029770da5d42af9995a327a6.zip
fix indent of mrb_exc_raise
Diffstat (limited to 'src/error.c')
-rw-r--r--src/error.c12
1 files changed, 6 insertions, 6 deletions
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