mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-16 08:50:08 +00:00
(encode_coding_sjis_big5): Enclose bitwise AND in
parens, to ensure correct evaluation order.
This commit is contained in:
parent
925c2f3f5e
commit
7371fe0a09
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue