diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-07-18 19:30:36 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-07-18 19:30:36 (GMT) |
commit | 139df18bab8901ee3c6f4b0fb11e36b45b567b4b (patch) | |
tree | b8daad46e3327cf0d4e9958e2dc550818ab24520 /unix | |
parent | d2d5dbf16bcb9a1ff56a5537b5501dff4997ea3a (diff) | |
download | tk-139df18bab8901ee3c6f4b0fb11e36b45b567b4b.zip tk-139df18bab8901ee3c6f4b0fb11e36b45b567b4b.tar.gz tk-139df18bab8901ee3c6f4b0fb11e36b45b567b4b.tar.bz2 |
A slightly more efficient placing
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnixSelect.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tkUnixSelect.c b/unix/tkUnixSelect.c index 6e458c3..8f10766 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.24 2009/07/18 19:28:43 dkf Exp $ + * RCS: @(#) $Id: tkUnixSelect.c,v 1.25 2009/07/18 19:30:36 dkf Exp $ */ #include "tkInt.h" @@ -1503,8 +1503,8 @@ SelCvtFromX32( sprintf(buf, "0x%x", (unsigned int) *propPtr); Tcl_DStringAppendElement(dsPtr, buf); } - Tcl_DStringAppend(dsPtr, " ", 1); } + Tcl_DStringAppend(dsPtr, " ", 1); } static void @@ -1528,8 +1528,8 @@ SelCvtFromX8( sprintf(buf, "0x%x", (unsigned char) *propPtr); Tcl_DStringAppendElement(dsPtr, buf); - Tcl_DStringAppend(dsPtr, " ", 1); } + Tcl_DStringAppend(dsPtr, " ", 1); } /* |