diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-04 13:27:26 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-04 13:27:26 (GMT) |
| commit | f1957eb57d9007870b2cb1173f19443d71a1e964 (patch) | |
| tree | a8a96bbd284b5efa0d2f923f00f50a3539341ba2 /generic/tclEvent.c | |
| parent | d05aa432f43c40541fc79f6e2e9f4172622ed8ff (diff) | |
| download | tcl-f1957eb57d9007870b2cb1173f19443d71a1e964.zip tcl-f1957eb57d9007870b2cb1173f19443d71a1e964.tar.gz tcl-f1957eb57d9007870b2cb1173f19443d71a1e964.tar.bz2 | |
Remove accidental check-in of TIP#143 code. D'oh!
Diffstat (limited to 'generic/tclEvent.c')
| -rw-r--r-- | generic/tclEvent.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 4ebdb9f..029d297 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.35 2004/05/04 12:36:22 dkf Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.36 2004/05/04 13:27:26 dkf Exp $ */ #include "tclInt.h" @@ -1114,9 +1114,6 @@ 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, @@ -1203,9 +1200,6 @@ Tcl_UpdateObjCmd(clientData, interp, objc, objv) } while (Tcl_DoOneEvent(flags) != 0) { - if (Tcl_LimitExceeded(interp)) { - return TCL_ERROR; - } } /* |
