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

ruby-changes:41351

From: yui-knk <ko1@a...>
Date: Mon, 4 Jan 2016 08:14:37 +0900 (JST)
Subject: [ruby-changes:41351] yui-knk:r53423 (trunk): Move a comment to the appropriate position.

yui-knk	2016-01-04 08:14:43 +0900 (Mon, 04 Jan 2016)

  New Revision: 53423

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

  Log:
    Move a comment to the appropriate position.
    
    The position of `/* fall through */` was moved by r52931.
    
    * insns.def (opt_case_dispatch): Move a comment to the
      appropriate position.
      [ci skip]

  Modified files:
    trunk/ChangeLog
    trunk/insns.def
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53422)
+++ ChangeLog	(revision 53423)
@@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Mon Jan  4 08:10:44 2016  Yuichiro Kaneko  <yui-knk@r...>
+
+	* insns.def (opt_case_dispatch): Move a comment to the
+	  appropriate position.
+	  [ci skip]
+
 Sun Jan  3 23:55:13 2016  Nobuyoshi Nakada  <nobu@r...>
 
 	* lib/rubygems/security.rb (DIGEST_ALGORITHM, KEY_ALGORITHM):
Index: insns.def
===================================================================
--- insns.def	(revision 53422)
+++ insns.def	(revision 53423)
@@ -1266,10 +1266,10 @@ opt_case_dispatch https://github.com/ruby/ruby/blob/trunk/insns.def#L1266
 	    key = FIXABLE(ival) ? LONG2FIX((long)ival) : rb_dbl2big(ival);
 	}
       }
-      case T_TRUE:
+      case T_TRUE: /* fall through */
       case T_FALSE:
       case T_NIL:
-      case T_SYMBOL: /* fall through */
+      case T_SYMBOL:
       case T_FIXNUM:
       case T_BIGNUM:
       case T_STRING:

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

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