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

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-12-07 02:52:37 +00:00
parent aff0d98a5b
commit 0f8e9a24c1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Dec 6 19:52:50 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (arg): typo fixed ("!" -> "|") in the ripper code.
Thu Dec 6 19:48:41 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (arg): tUPLUS no longer works as identity operation any

View File

@ -2053,7 +2053,7 @@ arg : lhs '=' arg
/*%%%*/
$$ = call_bin_op($1, '|', $3);
/*%
$$ = dispatch3(binary, $1, ID2SYM('!'), $3);
$$ = dispatch3(binary, $1, ID2SYM('|'), $3);
%*/
}
| arg '^' arg