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

ruby-changes:2634

From: ko1@a...
Date: 7 Dec 2007 11:53:07 +0900
Subject: [ruby-changes:2634] matz - Ruby:r14125 (trunk): * parse.y (arg): typo fixed ("!" -> "|") in the ripper code.

matz	2007-12-07 11:52:37 +0900 (Fri, 07 Dec 2007)

  New Revision: 14125

  Modified files:
    trunk/ChangeLog
    trunk/parse.y

  Log:
    * parse.y (arg): typo fixed ("!" -> "|") in the ripper code.

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/parse.y?r1=14125&r2=14124
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=14125&r2=14124

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 14124)
+++ ChangeLog	(revision 14125)
@@ -1,3 +1,7 @@
+Thu Dec  6 19:52:50 2007  Yukihiro Matsumoto  <matz@r...>
+
+	* parse.y (arg): typo fixed ("!" -> "|") in the ripper code.
+
 Thu Dec  6 19:48:41 2007  Yukihiro Matsumoto  <matz@r...>
 
 	* parse.y (arg): tUPLUS no longer works as identity operation any
Index: parse.y
===================================================================
--- parse.y	(revision 14124)
+++ parse.y	(revision 14125)
@@ -2053,7 +2053,7 @@
 		    /*%%%*/
 			$$ = call_bin_op($1, '|', $3);
 		    /*%
-			$$ = dispatch3(binary, $1, ID2SYM('!'), $3);
+			$$ = dispatch3(binary, $1, ID2SYM('|'), $3);
 		    %*/
 		    }
 		| arg '^' arg

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

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