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

ruby-changes:38793

From: nobu <ko1@a...>
Date: Sat, 13 Jun 2015 21:29:12 +0900 (JST)
Subject: [ruby-changes:38793] nobu:r50874 (trunk): thread.c: indent

nobu	2015-06-13 21:28:57 +0900 (Sat, 13 Jun 2015)

  New Revision: 50874

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

  Log:
    thread.c: indent
    
    * thread.c (rb_thread_inspect): adjust indent.

  Modified files:
    trunk/thread.c
Index: thread.c
===================================================================
--- thread.c	(revision 50873)
+++ thread.c	(revision 50874)
@@ -2775,7 +2775,7 @@ rb_thread_inspect(VALUE thread) https://github.com/ruby/ruby/blob/trunk/thread.c#L2775
     status = thread_status_name(th);
     str = rb_sprintf("#<%"PRIsVALUE":%p", cname, (void *)thread);
     if (!NIL_P(th->name)) {
-	    rb_str_catf(str, "@%"PRIsVALUE, th->name);
+	rb_str_catf(str, "@%"PRIsVALUE, th->name);
     }
     if (!th->first_func && th->first_proc) {
 	VALUE loc = rb_proc_location(th->first_proc);

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

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