summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixSelect.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-07-18 19:32:20 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-07-18 19:32:20 (GMT)
commite2a33629447afdc96d9884f479f2edf276c6479f (patch)
tree8f86f1e84d6cd7137c48df93c238bd1033338702 /unix/tkUnixSelect.c
parent19ea3b5ea84ea9eb57051fc996bb06ce0fecd1f6 (diff)
downloadtk-e2a33629447afdc96d9884f479f2edf276c6479f.zip
tk-e2a33629447afdc96d9884f479f2edf276c6479f.tar.gz
tk-e2a33629447afdc96d9884f479f2edf276c6479f.tar.bz2
Fix the transfer of large binary data. I hate INCR selections transfers...
Diffstat (limited to 'unix/tkUnixSelect.c')
-rw-r--r--unix/tkUnixSelect.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/tkUnixSelect.c b/unix/tkUnixSelect.c
index 1de8bdc..fda261c 100644
--- a/unix/tkUnixSelect.c
+++ b/unix/tkUnixSelect.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUnixSelect.c,v 1.21.4.1 2009/07/15 21:08:43 dkf Exp $
+ * RCS: @(#) $Id: tkUnixSelect.c,v 1.21.4.2 2009/07/18 19:32:20 dkf Exp $
*/
#include "tkInt.h"
@@ -1504,6 +1504,7 @@ SelCvtFromX32(
Tcl_DStringAppendElement(dsPtr, buf);
}
}
+ Tcl_DStringAppend(dsPtr, " ", 1);
}
static void
@@ -1528,6 +1529,7 @@ SelCvtFromX8(
sprintf(buf, "0x%x", (unsigned char) *propPtr);
Tcl_DStringAppendElement(dsPtr, buf);
}
+ Tcl_DStringAppend(dsPtr, " ", 1);
}
/*