[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/w32select.c
From: |
Kenichi Handa |
Subject: |
[Emacs-diffs] Changes to emacs/src/w32select.c |
Date: |
Sun, 23 Jun 2002 20:37:04 -0400 |
Index: emacs/src/w32select.c
diff -c emacs/src/w32select.c:1.23 emacs/src/w32select.c:1.24
*** emacs/src/w32select.c:1.23 Sat Feb 23 13:12:30 2002
--- emacs/src/w32select.c Sun Jun 23 20:37:03 2002
***************
*** 330,335 ****
--- 330,339 ----
coding.dst_multibyte = 1;
Vnext_selection_coding_system = Qnil;
coding.mode |= CODING_MODE_LAST_BLOCK;
+ /* We explicitely disable composition handling because
+ selection data should not contain any composition
+ sequence. */
+ coding.composing = COMPOSITION_DISABLED;
bufsize = decoding_buffer_size (&coding, nbytes);
buf = (unsigned char *) xmalloc (bufsize);
decode_coding (&coding, src, buf, nbytes, bufsize);
- [Emacs-diffs] Changes to emacs/src/w32select.c,
Kenichi Handa <=