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 | 28577b6998a07f7ffc77fb14e6ebf7f915c67ba0 (patch) | |
tree | f84e7b63a363eae47b283df8cd05e218145957f2 /generic/tclZlib.c | |
parent | ca07e90d46b1673b30fc99c06f3a1e89c647137f (diff) | |
download | tcl-28577b6998a07f7ffc77fb14e6ebf7f915c67ba0.zip tcl-28577b6998a07f7ffc77fb14e6ebf7f915c67ba0.tar.gz tcl-28577b6998a07f7ffc77fb14e6ebf7f915c67ba0.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); } } |