summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-13 03:53:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-13 03:53:18 +0000
commitb07bdbc2b308440fc1cc3f185256bf9f8433e09a (patch)
tree7e12d448619b145b8dc52284b78ae953811e5f64
parentf2c319395ddb3239f4bf71861db3dc0c175c32bd (diff)
eval.c: indent
* eval.c (using_module_recursive): adjust indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44168 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/eval.c b/eval.c
index c49fd88f02..141cbe12b3 100644
--- a/eval.c
+++ b/eval.c
@@ -1152,15 +1152,15 @@ using_module_recursive(NODE *cref, VALUE klass)
using_module_recursive(cref, super);
}
switch (BUILTIN_TYPE(klass)) {
- case T_MODULE:
+ case T_MODULE:
module = klass;
break;
- case T_ICLASS:
+ case T_ICLASS:
module = RBASIC(klass)->klass;
break;
- default:
+ default:
rb_raise(rb_eTypeError, "wrong argument type %s (expected Module)",
rb_obj_classname(klass));
break;