diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclBasic.c | 3 | ||||
-rw-r--r-- | generic/tclExecute.c | 3 | ||||
-rw-r--r-- | generic/tclNamesp.c | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index aabcb27..e83da4f 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.115 2004/09/21 22:45:40 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.116 2004/09/24 01:14:41 dgp Exp $ */ #include "tclInt.h" @@ -3644,6 +3644,7 @@ Tcl_EvalEx(interp, script, numBytes, flags) } Tcl_LogCommandInfo(interp, script, parse.commandStart, commandLength); } + iPtr->flags &= ~ERR_ALREADY_LOGGED; for (i = 0; i < objectsUsed; i++) { Tcl_DecrRefCount(objv[i]); diff --git a/generic/tclExecute.c b/generic/tclExecute.c index a79ab92..138d25e 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.152 2004/09/22 15:48:22 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.153 2004/09/24 01:14:42 dgp Exp $ */ #ifdef STDC_HEADERS @@ -4829,6 +4829,7 @@ TclExecuteByteCode(interp, codePtr) CACHE_STACK_INFO(); } } + iPtr->flags &= ~ERR_ALREADY_LOGGED; /* * Clear all expansions that may have started after the last diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 902d5d6..abd179c 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -21,7 +21,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclNamesp.c,v 1.54 2004/09/21 22:45:42 dgp Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.55 2004/09/24 01:14:43 dgp Exp $ */ #include "tclInt.h" @@ -515,7 +515,6 @@ Tcl_PopCallFrame(interp) } iPtr->flags |= saveErrFlag; - iPtr->flags &= ~ERR_ALREADY_LOGGED; /* * Decrement the namespace's count of active call frames. If the |