/[emacs]/emacs/src/w32select.c
ViewVC logotype

Diff of /emacs/src/w32select.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.20 by jasonr, Tue Nov 21 19:18:13 2000 UTC revision 1.20.14.1 by handa, Tue Jul 9 00:01:09 2002 UTC
# Line 30  Boston, MA 02111-1307, USA.  */ Line 30  Boston, MA 02111-1307, USA.  */
30  #include "buffer.h"  #include "buffer.h"
31  #include "charset.h"  #include "charset.h"
32  #include "coding.h"  #include "coding.h"
33    #include "composite.h"
34    
35  Lisp_Object QCLIPBOARD;  Lisp_Object QCLIPBOARD;
36    
# Line 325  DEFUN ("w32-get-clipboard-data", Fw32_ge Line 326  DEFUN ("w32-get-clipboard-data", Fw32_ge
326          coding.dst_multibyte = 1;          coding.dst_multibyte = 1;
327          Vnext_selection_coding_system = Qnil;          Vnext_selection_coding_system = Qnil;
328          coding.mode |= CODING_MODE_LAST_BLOCK;          coding.mode |= CODING_MODE_LAST_BLOCK;
329            /* We explicitely disable composition handling because
330               selection data should not contain any composition
331               sequence.  */
332            coding.composing = COMPOSITION_DISABLED;
333          bufsize = decoding_buffer_size (&coding, nbytes);          bufsize = decoding_buffer_size (&coding, nbytes);
334          buf = (unsigned char *) xmalloc (bufsize);          buf = (unsigned char *) xmalloc (bufsize);
335          decode_coding (&coding, src, buf, nbytes, bufsize);          decode_coding (&coding, src, buf, nbytes, bufsize);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.20.14.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26