diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-13 12:59:04 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-13 12:59:04 (GMT) |
| commit | 34a7d6269001ba5858a0e534dc09c7114f68dda8 (patch) | |
| tree | 6e35a78f3d83e2cb85b57d1401aaf89989c6ff3d /generic/tclEvent.c | |
| parent | 9f6a13b2e9687bdc3e623960ca8d941b550a77a4 (diff) | |
| download | tcl-34a7d6269001ba5858a0e534dc09c7114f68dda8.zip tcl-34a7d6269001ba5858a0e534dc09c7114f68dda8.tar.gz tcl-34a7d6269001ba5858a0e534dc09c7114f68dda8.tar.bz2 | |
TIP#143 implementation; still needs docs and more tests...
Diffstat (limited to 'generic/tclEvent.c')
| -rw-r--r-- | generic/tclEvent.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 029d297..bc307dc 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEvent.c,v 1.36 2004/05/04 13:27:26 dkf Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.37 2004/05/13 12:59:21 dkf Exp $ */ #include "tclInt.h" @@ -1114,6 +1114,9 @@ Tcl_VwaitObjCmd(clientData, interp, objc, objv) foundEvent = 1; while (!done && foundEvent) { foundEvent = Tcl_DoOneEvent(TCL_ALL_EVENTS); + if (Tcl_LimitExceeded(interp)) { + return TCL_ERROR; + } } Tcl_UntraceVar(interp, nameString, TCL_GLOBAL_ONLY|TCL_TRACE_WRITES|TCL_TRACE_UNSETS, @@ -1200,6 +1203,9 @@ Tcl_UpdateObjCmd(clientData, interp, objc, objv) } while (Tcl_DoOneEvent(flags) != 0) { + if (Tcl_LimitExceeded(interp)) { + return TCL_ERROR; + } } /* |
