Mercurial > emacs
changeset 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 | c6aabac439cb |
children | 6adb10eaeaa8 |
files | src/xfns.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
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);