リビジョン | 64684c75a9483a3d191c27967862124a69b8e67c (tree) |
---|---|
日時 | 2019-12-06 18:36:45 |
作者 | IWAMOTO Kouichi <sue@iwmt...> |
コミッター | IWAMOTO Kouichi |
suppress logical-op-parentheses warning
@@ -221,7 +221,7 @@ FILE *fp; | ||
221 | 221 | clearscr(); |
222 | 222 | |
223 | 223 | while ((c = getc(fp)) != EOF) { |
224 | - if (c >= ' ' && c < DEL || (c & 0x80)) { | |
224 | + if ((c >= ' ' && c < DEL) || (c & 0x80)) { | |
225 | 225 | retry: |
226 | 226 | if (col >= cols) { |
227 | 227 | lin++; |
@@ -233,9 +233,9 @@ FILE *fp; | ||
233 | 233 | } |
234 | 234 | col = 0; |
235 | 235 | } |
236 | - if (kcode == KC_EUC && c >= 0xa1 && c <= 0xfe || | |
237 | - kcode == KC_SJIS && SJIS1(c) || | |
238 | - kcode == KC_NONE && c >= 0x81 && c <= 0xfe || | |
236 | + if ((kcode == KC_EUC && c >= 0xa1 && c <= 0xfe) || | |
237 | + (kcode == KC_SJIS && SJIS1(c)) || | |
238 | + (kcode == KC_NONE && c >= 0x81 && c <= 0xfe) || | |
239 | 239 | mode == M_KANJI) { |
240 | 240 | if (col == cols - 1) { |
241 | 241 | if (verbose && !flushed && |
@@ -809,7 +809,7 @@ int n; | ||
809 | 809 | if (keepgr) { |
810 | 810 | newrev = (cl & A_REV) != 0; |
811 | 811 | newul = (cl & A_UL) != 0; |
812 | - if (rev && !newrev || ul && !newul) | |
812 | + if ((rev && !newrev) || (ul && !newul)) | |
813 | 813 | printf("\033[m"); |
814 | 814 | if (!rev && newrev) |
815 | 815 | printf("\033[7m"); |