[前][次][番号順一覧][スレッド一覧]

ruby-changes:54353

From: svn <ko1@a...>
Date: Wed, 26 Dec 2018 09:59:45 +0900 (JST)
Subject: [ruby-changes:54353] svn:r66566 (trunk): * expand tabs.

svn	2018-12-26 09:59:40 +0900 (Wed, 26 Dec 2018)

  New Revision: 66566

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66566

  Log:
    * expand tabs.

  Modified files:
    trunk/vm_insnhelper.c
Index: vm_insnhelper.c
===================================================================
--- vm_insnhelper.c	(revision 66565)
+++ vm_insnhelper.c	(revision 66566)
@@ -2462,14 +2462,14 @@ vm_search_super_method(const rb_control_ https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L2462
     if (BUILTIN_TYPE(current_defined_class) != T_MODULE &&
 	BUILTIN_TYPE(current_defined_class) != T_ICLASS && /* bound UnboundMethod */
 	!FL_TEST(current_defined_class, RMODULE_INCLUDED_INTO_REFINEMENT) &&
-	!rb_obj_is_kind_of(recv, current_defined_class)) {
+        !rb_obj_is_kind_of(recv, current_defined_class)) {
 	VALUE m = RB_TYPE_P(current_defined_class, T_ICLASS) ?
 	    RBASIC(current_defined_class)->klass : current_defined_class;
 
 	rb_raise(rb_eTypeError,
 		 "self has wrong type to call super in this context: "
 		 "%"PRIsVALUE" (expected %"PRIsVALUE")",
-		 rb_obj_class(recv), m);
+                 rb_obj_class(recv), m);
     }
 
     if (me->def->type == VM_METHOD_TYPE_BMETHOD && (ci->flag & VM_CALL_ZSUPER)) {
@@ -3217,7 +3217,7 @@ vm_invokeblock_i( https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L3217
     VALUE block_handler = VM_CF_BLOCK_HANDLER(GET_CFP());
 
     if (block_handler == VM_BLOCK_HANDLER_NONE) {
-	rb_vm_localjump_error("no block given (yield)", Qnil, 0);
+        rb_vm_localjump_error("no block given (yield)", Qnil, 0);
     }
     else {
         return vm_invoke_block(ec, GET_CFP(), calling, ci, block_handler);

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]