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

ruby-changes:36044

From: nobu <ko1@a...>
Date: Fri, 24 Oct 2014 22:33:19 +0900 (JST)
Subject: [ruby-changes:36044] nobu:r48125 (trunk): parse.y: indent

nobu	2014-10-24 22:33:06 +0900 (Fri, 24 Oct 2014)

  New Revision: 48125

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

  Log:
    parse.y: indent
    
    * parse.y (parser_yylex): adjust indent.

  Modified files:
    trunk/parse.y
Index: parse.y
===================================================================
--- parse.y	(revision 48124)
+++ parse.y	(revision 48125)
@@ -7763,11 +7763,11 @@ parser_yylex(struct parser_params *parse https://github.com/ruby/ruby/blob/trunk/parse.y#L7763
 		space_seen = 1;
 		break;
 	      case '.': {
-		  if ((c = nextc()) != '.') {
-		      pushback(c);
-		      pushback('.');
-		      goto retry;
-		  }
+		if ((c = nextc()) != '.') {
+		    pushback(c);
+		    pushback('.');
+		    goto retry;
+		}
 	      }
 	      default:
 		--ruby_sourceline;

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

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