changeset 110336:3ffb3b102dae

coding.c (encode_coding_iso_2022): Do not optimize for ASCII if we may use designation or locking-shift.
author Kenichi Handa <handa@m17n.org>
date Wed, 08 Sep 2010 11:21:03 +0900
parents f226899b26ca
children c32e93d8bf05
files src/ChangeLog src/coding.c
diffstat 2 files changed, 9 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Tue Sep 07 20:22:15 2010 +0900
+++ b/src/ChangeLog	Wed Sep 08 11:21:03 2010 +0900
@@ -1,3 +1,8 @@
+2010-09-08  Kenichi Handa  <handa@m17n.org>
+
+	* coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
+	we may use designation or locking-shift.
+
 2010-09-07  Kenichi Handa  <handa@m17n.org>
 
 	* coding.c (detect_coding_emacs_mule): Fix checking of multibyte
--- a/src/coding.c	Tue Sep 07 20:22:15 2010 +0900
+++ b/src/coding.c	Wed Sep 08 11:21:03 2010 +0900
@@ -4528,7 +4528,10 @@
   charset_list = CODING_ATTR_CHARSET_LIST (attrs);
   coding->safe_charsets = SDATA (CODING_ATTR_SAFE_CHARSETS (attrs));
 
-  ascii_compatible = ! NILP (CODING_ATTR_ASCII_COMPAT (attrs));
+  ascii_compatible
+    = (! NILP (CODING_ATTR_ASCII_COMPAT (attrs))
+       && ! (CODING_ISO_FLAGS (coding) & (CODING_ISO_FLAG_DESIGNATION
+					  | CODING_ISO_FLAG_LOCKING_SHIFT)));
 
   while (charbuf < charbuf_end)
     {