From 16c53502057d22be392557555284584ae5c1e850 Mon Sep 17 00:00:00 2001 From: dkf Date: Sun, 16 Nov 2003 02:12:56 +0000 Subject: Miguel's masking bits had the wrong sense. I should have spotted this, but he did instead... --- generic/tclExecute.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 466cb6b..071ac25 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.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: tclExecute.c,v 1.116 2003/11/16 01:15:55 dkf Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.117 2003/11/16 02:12:56 dkf Exp $ */ #include "tclInt.h" @@ -1220,7 +1220,7 @@ TclExecuteByteCode(interp, codePtr) * do the check every 16th instruction. */ - if (!(instructionCount++ & ~ASYNC_CHECK_COUNT_MASK) && Tcl_AsyncReady()) { + if (!(instructionCount++ & ASYNC_CHECK_COUNT_MASK) && Tcl_AsyncReady()) { DECACHE_STACK_INFO(); result = Tcl_AsyncInvoke(interp, result); CACHE_STACK_INFO(); -- cgit v0.12