diff options
author | jenglish <jenglish@flightlab.com> | 2002-06-21 21:17:39 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2002-06-21 21:17:39 (GMT) |
commit | 61158455202c06406d3c69e6d69acb490856f7ac (patch) | |
tree | d8313af4788089198ad303a238fb21e114d78d18 /generic/tclParseExpr.c | |
parent | d4eb3712e574a36917bc1a5cc3173af9fec10f8a (diff) | |
download | tcl-61158455202c06406d3c69e6d69acb490856f7ac.zip tcl-61158455202c06406d3c69e6d69acb490856f7ac.tar.gz tcl-61158455202c06406d3c69e6d69acb490856f7ac.tar.bz2 |
LogSyntaxError() should reset the interpreter result
[Bug 550142 "Tcl_ExprObj -> abort"]
Diffstat (limited to 'generic/tclParseExpr.c')
-rw-r--r-- | generic/tclParseExpr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclParseExpr.c b/generic/tclParseExpr.c index f7d0428..6d1fc30 100644 --- a/generic/tclParseExpr.c +++ b/generic/tclParseExpr.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclParseExpr.c,v 1.12 2002/02/15 14:28:49 dkf Exp $ + * RCS: @(#) $Id: tclParseExpr.c,v 1.13 2002/06/21 21:17:39 jenglish Exp $ */ #include "tclInt.h" @@ -1996,6 +1996,7 @@ LogSyntaxError(infoPtr, extraInfo) sprintf(buffer, "syntax error in expression \"%s\"", infoPtr->originalExpr); } + Tcl_ResetResult(infoPtr->parsePtr->interp); Tcl_AppendStringsToObj(Tcl_GetObjResult(infoPtr->parsePtr->interp), buffer, ": ", extraInfo, (char *) NULL); infoPtr->parsePtr->errorType = TCL_PARSE_SYNTAX; |