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

ruby-changes:46279

From: shyouhei <ko1@a...>
Date: Tue, 18 Apr 2017 20:07:04 +0900 (JST)
Subject: [ruby-changes:46279] shyouhei:r58392 (trunk): tabify (sorry!) [ci skip]

shyouhei	2017-04-18 20:06:58 +0900 (Tue, 18 Apr 2017)

  New Revision: 58392

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

  Log:
    tabify (sorry!) [ci skip]

  Modified files:
    trunk/insns.def
    trunk/vm_insnhelper.c
Index: vm_insnhelper.c
===================================================================
--- vm_insnhelper.c	(revision 58391)
+++ vm_insnhelper.c	(revision 58392)
@@ -3244,13 +3244,13 @@ vm_once_dispatch(ISEQ iseq, IC ic, rb_th https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L3244
 	return is->once.value;
     }
     else if (is->once.running_thread == NULL) {
-        VALUE val;
+	VALUE val;
 	is->once.running_thread = th;
 	val = is->once.value = rb_ensure(vm_once_exec, (VALUE)iseq, vm_once_clear, (VALUE)is);
 	/* is->once.running_thread is cleared by vm_once_clear() */
 	is->once.running_thread = RUNNING_THREAD_ONCE_DONE; /* success */
 	rb_iseq_add_mark_object(th->cfp->iseq, val);
-        return val;
+	return val;
     }
     else if (is->once.running_thread == th) {
 	/* recursive once */
@@ -3260,7 +3260,7 @@ vm_once_dispatch(ISEQ iseq, IC ic, rb_th https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L3260
 	/* waiting for finish */
 	RUBY_VM_CHECK_INTS(th);
 	rb_thread_schedule();
-        return vm_once_dispatch(iseq, ic, th);
+	return vm_once_dispatch(iseq, ic, th);
     }
 }
 
@@ -3424,7 +3424,7 @@ vm_opt_mod(VALUE recv, VALUE obj) https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L3424
 
 static inline int
 vm_method_cfunc_is(CALL_INFO ci, CALL_CACHE cc,
-                   VALUE recv, VALUE (*func)())
+		   VALUE recv, VALUE (*func)())
 {
     vm_search_method(ci, cc, recv);
     return check_cfunc(cc->me, func);
Index: insns.def
===================================================================
--- insns.def	(revision 58391)
+++ insns.def	(revision 58392)
@@ -1406,7 +1406,7 @@ opt_aset_with https://github.com/ruby/ruby/blob/trunk/insns.def#L1406
     VALUE tmp = vm_opt_aset_with(recv, key, val);
 
     if (tmp != Qundef) {
-        val = tmp;
+	val = tmp;
     }
     else {
 	/* other */

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

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