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

From-SVN: r57991
This commit is contained in:
Kaveh R. Ghazi 2002-10-09 20:54:37 +00:00 committed by Kaveh Ghazi
parent a2419b9670
commit c6449a1dbc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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';