Commit c6449a1d by Kaveh R. Ghazi Committed by Kaveh Ghazi

* parse.y (merge_string_cste): Add parentheses around & within |.

From-SVN: r57991
parent a2419b96
2002-10-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* parse.y (merge_string_cste): Add parentheses around & within |.
2002-10-08 Tom Tromey <tromey@redhat.com>
* parse.y (variable_declarator_id): Simplify error path for
......
......@@ -13777,7 +13777,7 @@ merge_string_cste (op1, op2, after)
else
{
*p++ = c >> 6 | 0xc0;
*p++ = c & 0x3f | 0x80;
*p++ = (c & 0x3f) | 0x80;
}
*p = '\0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment