# 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 --git a/src/lex.l b/src/lex.l --- a/src/lex.l +++ b/src/lex.l @@ -1292,7 +1292,7 @@ } } - if (at_bol && c == '%' || c == '#') + if (at_bol && (c == '%' || c == '#')) { if (c == '#' && ! warned_incompatible) {