diff options
author | dgp <dgp@users.sourceforge.net> | 2007-08-22 14:04:16 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-08-22 14:04:16 (GMT) |
commit | 315e3662b6c8f926fb8539ae1f1e1aaae9145c27 (patch) | |
tree | 53f14c937a5b7904ac7c9290340ff093cbbb1f1b /generic/tclCompExpr.c | |
parent | c55995199f49846a457d2c1acbe0c9363c14467c (diff) | |
download | tcl-315e3662b6c8f926fb8539ae1f1e1aaae9145c27.zip tcl-315e3662b6c8f926fb8539ae1f1e1aaae9145c27.tar.gz tcl-315e3662b6c8f926fb8539ae1f1e1aaae9145c27.tar.bz2 |
Missing init in ParseExpr().
Label needs debug build exposure in TEBC.
Diffstat (limited to 'generic/tclCompExpr.c')
-rw-r--r-- | generic/tclCompExpr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c index 593de97..b7e3404 100644 --- a/generic/tclCompExpr.c +++ b/generic/tclCompExpr.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompExpr.c,v 1.77 2007/08/16 19:19:50 dgp Exp $ + * RCS: @(#) $Id: tclCompExpr.c,v 1.78 2007/08/22 14:04:16 dgp Exp $ */ #include "tclInt.h" @@ -587,6 +587,7 @@ ParseExpr( nodes->lexeme = START; nodes->precedence = prec[START]; nodes->mark = MARK_RIGHT; + nodes->constant = 1; incomplete = lastParsed = nodesUsed; nodesUsed++; |