diff options
Diffstat (limited to 'src/coding.c')
-rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 2a1fc1309f1..8c54f86e531 100644 --- a/src/coding.c +++ b/src/coding.c @@ -3043,7 +3043,7 @@ encode_coding_sjis_big5 (coding, source, destination, switch (c) { case '\r': - if (!coding->mode & CODING_MODE_SELECTIVE_DISPLAY) + if (!(coding->mode & CODING_MODE_SELECTIVE_DISPLAY)) { EMIT_ONE_BYTE (c); break; |