diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-04 13:27:26 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-04 13:27:26 (GMT) |
commit | fbcd7cccc5539a2c162b11f4c802b3914d48401e (patch) | |
tree | a8a96bbd284b5efa0d2f923f00f50a3539341ba2 /generic | |
parent | 20afef407358051d2aa59f04036a09d1a1f170e9 (diff) | |
download | tcl-fbcd7cccc5539a2c162b11f4c802b3914d48401e.zip tcl-fbcd7cccc5539a2c162b11f4c802b3914d48401e.tar.gz tcl-fbcd7cccc5539a2c162b11f4c802b3914d48401e.tar.bz2 |
Remove accidental check-in of TIP#143 code. D'oh!
Diffstat (limited to 'generic')
-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; - } } /* |