diff options
author | dgp <dgp@users.sourceforge.net> | 2007-10-15 18:38:02 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-10-15 18:38:02 (GMT) |
commit | d3f32c25f4f4e52eff048406ab16786b1de14677 (patch) | |
tree | 8a8212da8cd407a47f23422e2ef3e4f3f728530e /generic/tclParse.c | |
parent | 3bf2e431b1f1d665dc8ce7d2b34635376fdc58be (diff) | |
download | tcl-d3f32c25f4f4e52eff048406ab16786b1de14677.zip tcl-d3f32c25f4f4e52eff048406ab16786b1de14677.tar.gz tcl-d3f32c25f4f4e52eff048406ab16786b1de14677.tar.bz2 |
merge updates from HEAD
Diffstat (limited to 'generic/tclParse.c')
-rw-r--r-- | generic/tclParse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c index 84ffa84..2c3f52e 100644 --- a/generic/tclParse.c +++ b/generic/tclParse.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: tclParse.c,v 1.52.2.4 2007/07/19 22:52:58 dgp Exp $ + * RCS: @(#) $Id: tclParse.c,v 1.52.2.5 2007/10/15 18:38:07 dgp Exp $ */ #include "tclInt.h" @@ -1785,7 +1785,7 @@ Tcl_ParseBraces( { register int openBrace = 0; - for (; src > start; src--) { + while (--src > start) { switch (*src) { case '{': openBrace = 1; |