mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 04:30:55 -08:00
(decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
in 8-bit encoding.
This commit is contained in:
parent
2f1b7dc4a2
commit
a63dba4250
2 changed files with 7 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2009-12-14 Kenichi Handa <handa@m17n.org>
|
||||||
|
|
||||||
|
* coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
|
||||||
|
in 8-bit encoding.
|
||||||
|
|
||||||
2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
|
2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
|
||||||
|
|
||||||
* xfns.c (x_create_tip_frame): Set the extended window manager hint for
|
* xfns.c (x_create_tip_frame): Set the extended window manager hint for
|
||||||
|
|
|
||||||
|
|
@ -3726,6 +3726,8 @@ decode_coding_iso_2022 (coding)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
case ISO_single_shift_2_7:
|
case ISO_single_shift_2_7:
|
||||||
|
if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SEVEN_BITS))
|
||||||
|
goto invalid_code;
|
||||||
case ISO_single_shift_2:
|
case ISO_single_shift_2:
|
||||||
if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT))
|
if (! (CODING_ISO_FLAGS (coding) & CODING_ISO_FLAG_SINGLE_SHIFT))
|
||||||
goto invalid_code;
|
goto invalid_code;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue