diff src/xfns.c @ 33242:421e3db4e24e

(x_encode_text): Suppress producing escape sequences for composition.
author Kenichi Handa <handa@m17n.org>
date Mon, 06 Nov 2000 12:36:06 +0000
parents 78b4e9f31087
children 2c60aa5cd386
line wrap: on
line diff
--- a/src/xfns.c	Mon Nov 06 12:35:44 2000 +0000
+++ b/src/xfns.c	Mon Nov 06 12:36:06 2000 +0000
@@ -2163,6 +2163,8 @@
   coding.mode |= CODING_MODE_LAST_BLOCK;
   if (coding.type == coding_type_iso2022)
     coding.flags |= CODING_FLAG_ISO_SAFE;
+  /* We suppress producing escape sequences for composition.  */
+  coding.composing = COMPOSITION_DISABLED;
   bufsize = encoding_buffer_size (&coding, bytes);
   buf = (unsigned char *) xmalloc (bufsize);
   encode_coding (&coding, str, buf, bytes, bufsize);