mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 20:50:53 -08:00
(detect_coding): Fix previous change.
This commit is contained in:
parent
9b3b32110d
commit
78b82cca67
1 changed files with 4 additions and 1 deletions
|
|
@ -5070,7 +5070,10 @@ detect_coding (coding)
|
|||
detected |= detected_mask[category];
|
||||
if ((*(this->detector)) (coding, &mask)
|
||||
&& (mask & (1 << category)))
|
||||
break;
|
||||
{
|
||||
mask = 1 << category;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (! mask)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue