From 28f619e301cf5f266f38fe764c4018b7fabc77cb Mon Sep 17 00:00:00 2001 From: svn Date: Sat, 9 Mar 2019 00:12:53 +0000 Subject: [PATCH] * expand tabs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67198 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variable.c b/variable.c index e6790046a5..c3dd54d5f2 100644 --- a/variable.c +++ b/variable.c @@ -433,7 +433,7 @@ rb_path_to_class(VALUE pathname) } c = rb_const_search(c, id, TRUE, FALSE, FALSE); if (c == Qundef) goto undefined_class; - if (!rb_namespace_p(c)) { + if (!rb_namespace_p(c)) { rb_raise(rb_eTypeError, "%"PRIsVALUE" does not refer to class/module", pathname); } @@ -3108,7 +3108,7 @@ cvar_front_klass(VALUE klass) { if (FL_TEST(klass, FL_SINGLETON)) { VALUE obj = rb_ivar_get(klass, id__attached__); - if (rb_namespace_p(obj)) { + if (rb_namespace_p(obj)) { return obj; } }