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

ruby-changes:69265

From: Alan <ko1@a...>
Date: Thu, 21 Oct 2021 08:24:24 +0900 (JST)
Subject: [ruby-changes:69265] 40608d0b7b (master): Fix indentation in ruby.c

https://git.ruby-lang.org/ruby.git/commit/?id=40608d0b7b

From 40608d0b7bd20c20595f7f2f04d35bb2190cc031 Mon Sep 17 00:00:00 2001
From: Alan Wu <XrXr@u...>
Date: Fri, 15 Oct 2021 18:26:32 -0400
Subject: Fix indentation in ruby.c

---
 ruby.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ruby.c b/ruby.c
index 5f756ebbc8..85ef9cbd80 100644
--- a/ruby.c
+++ b/ruby.c
@@ -393,10 +393,10 @@ usage(const char *name, int help, int highlight, int columns) https://github.com/ruby/ruby/blob/trunk/ruby.c#L393
 	SHOW(warn_categories[i]);
     printf("%s""MJIT options (experimental):%s\n", sb, se);
     for (i = 0; i < numberof(mjit_options); ++i)
-    SHOW(mjit_options[i]);
+	SHOW(mjit_options[i]);
     printf("%s""YJIT options (experimental):%s\n", sb, se);
     for (i = 0; i < numberof(yjit_options); ++i)
-    SHOW(yjit_options[i]);
+        SHOW(yjit_options[i]);
 }
 
 #define rubylib_path_new rb_str_new
-- 
cgit v1.2.1


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

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