# HG changeset patch # User Kenichi Handa # Date 1024879175 0 # Node ID 8554a859e95738dc571f5b9db796f4cee6cdbaa5 # Parent 5be0ff42cd30d63dc7a164838119c10359b26793 (XTread_socket): Disable composition handling. diff -r 5be0ff42cd30 -r 8554a859e957 src/xterm.c --- a/src/xterm.c Mon Jun 24 00:37:24 2002 +0000 +++ b/src/xterm.c Mon Jun 24 00:39:35 2002 +0000 @@ -10685,6 +10685,11 @@ require = decoding_buffer_size (&coding, nbytes); p = (unsigned char *) alloca (require); coding.mode |= CODING_MODE_LAST_BLOCK; + /* We explicitely disable composition + handling because key data should + not contain any composition + sequence. */ + coding.composing = COMPOSITION_DISABLED; decode_coding (&coding, copy_bufptr, p, nbytes, require); nbytes = coding.produced;