# HG changeset patch # User John W. Eaton # Date 1214510391 14400 # Node ID cce16b4e09702152c298fd78925ed6f4f202ec1d # Parent 322a066543aca13a888e872ce388c8a26c1e5d16 lex.l (grab_block_comment): Use parens around || expression within && expression diff -r 322a066543ac -r cce16b4e0970 src/lex.l --- a/src/lex.l Wed Jun 25 08:05:33 2008 -0400 +++ b/src/lex.l Thu Jun 26 15:59:51 2008 -0400 @@ -1292,7 +1292,7 @@ } } - if (at_bol && c == '%' || c == '#') + if (at_bol && (c == '%' || c == '#')) { if (c == '#' && ! warned_incompatible) {