diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-05-25 08:50:37 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-05-25 08:50:37 (GMT) |
commit | 423017faed3aa258b3fa9c04cf9c6f5289d355a8 (patch) | |
tree | f84e7b63a363eae47b283df8cd05e218145957f2 /generic/tclZlib.c | |
parent | 8e1594e0c28687570a86fab6225c08157952fe7f (diff) | |
download | tcl-423017faed3aa258b3fa9c04cf9c6f5289d355a8.zip tcl-423017faed3aa258b3fa9c04cf9c6f5289d355a8.tar.gz tcl-423017faed3aa258b3fa9c04cf9c6f5289d355a8.tar.bz2 |
Factor out constant that must be the same in multiple places. Prompted by a
conversation with Alexandre Ferrieux.
Diffstat (limited to 'generic/tclZlib.c')
-rw-r--r-- | generic/tclZlib.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c index d4019fc..84a81f8 100644 --- a/generic/tclZlib.c +++ b/generic/tclZlib.c @@ -114,12 +114,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: */ @@ -2743,7 +2737,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); } } |