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/tclIO.h | |
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/tclIO.h')
-rw-r--r-- | generic/tclIO.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/generic/tclIO.h b/generic/tclIO.h index 3283c3e..1e89878 100644 --- a/generic/tclIO.h +++ b/generic/tclIO.h @@ -423,6 +423,13 @@ typedef struct GetsState { * appended to objPtr so far, just before the * last call to FilterInputBytes(). */ } GetsState; + +/* + * The length of time to wait between synthetic timer events. Must be zero or + * bad things tend to happen. + */ + +#define SYNTHETIC_EVENT_TIME 0 /* * Local Variables: |