summaryrefslogtreecommitdiffstats
path: root/generic/tclZlib.c
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2012-05-31 08:31:58 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2012-05-31 08:31:58 (GMT)
commita2dab739c549c071617fc8335a0494ada78af3b2 (patch)
tree2662cac0c4b4f7458c792fdfc1e8916f23f4d202 /generic/tclZlib.c
parenteeb780e8c9e9b136e63a4087313765171d413410 (diff)
parentbcc18bfb10374814559cf8971b4835be938e2aa8 (diff)
downloadtcl-a2dab739c549c071617fc8335a0494ada78af3b2.zip
tcl-a2dab739c549c071617fc8335a0494ada78af3b2.tar.gz
tcl-a2dab739c549c071617fc8335a0494ada78af3b2.tar.bz2
merge trunk
Diffstat (limited to 'generic/tclZlib.c')
-rw-r--r--generic/tclZlib.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c
index 3063b59..09cddcc 100644
--- a/generic/tclZlib.c
+++ b/generic/tclZlib.c
@@ -130,12 +130,6 @@ typedef struct {
#define DEFAULT_BUFFER_SIZE 4096
/*
- * Time to wait before delivering a timer event.
- */
-
-#define TRANSFORM_TIMEOUT 0
-
-/*
* Prototypes for private procedures defined later in this file:
*/
@@ -3126,7 +3120,7 @@ ZlibTransformWatch(
if (!(mask & TCL_READABLE) || Tcl_DStringLength(&cd->decompressed) == 0) {
ZlibTransformEventTimerKill(cd);
} else if (cd->timer == NULL) {
- cd->timer = Tcl_CreateTimerHandler(TRANSFORM_TIMEOUT,
+ cd->timer = Tcl_CreateTimerHandler(SYNTHETIC_EVENT_TIME,
ZlibTransformTimerRun, cd);
}
}