summaryrefslogtreecommitdiffstats
path: root/unix/tkUnixSelect.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-07-18 19:28:43 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-07-18 19:28:43 (GMT)
commitd2d5dbf16bcb9a1ff56a5537b5501dff4997ea3a (patch)
treef7a0e6b6d356e4edcc3483befb1c991868e9dfd7 /unix/tkUnixSelect.c
parent65ae2fbaa37ac797eb9852c6c34361f0d26e4197 (diff)
downloadtk-d2d5dbf16bcb9a1ff56a5537b5501dff4997ea3a.zip
tk-d2d5dbf16bcb9a1ff56a5537b5501dff4997ea3a.tar.gz
tk-d2d5dbf16bcb9a1ff56a5537b5501dff4997ea3a.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 9476e4e..6e458c3 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.23 2009/07/15 20:56:49 dkf Exp $
+ * RCS: @(#) $Id: tkUnixSelect.c,v 1.24 2009/07/18 19:28:43 dkf Exp $
*/
#include "tkInt.h"
@@ -1503,6 +1503,7 @@ SelCvtFromX32(
sprintf(buf, "0x%x", (unsigned int) *propPtr);
Tcl_DStringAppendElement(dsPtr, buf);
}
+ Tcl_DStringAppend(dsPtr, " ", 1);
}
}
@@ -1527,6 +1528,7 @@ SelCvtFromX8(
sprintf(buf, "0x%x", (unsigned char) *propPtr);
Tcl_DStringAppendElement(dsPtr, buf);
+ Tcl_DStringAppend(dsPtr, " ", 1);
}
}