diff options
author | Kevin B Kenny <kennykb@acm.org> | 2007-10-17 04:35:17 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2007-10-17 04:35:17 (GMT) |
commit | 08d7c1eb0bd82b0f1aa5b314d946fde160159f97 (patch) | |
tree | c7e520b513a7539bf23b751776a4e7b961d40a1c /generic/tclCompExpr.c | |
parent | 1e337a391dcab7902f2fbaf718c29f19022d01e1 (diff) | |
download | tcl-08d7c1eb0bd82b0f1aa5b314d946fde160159f97.zip tcl-08d7c1eb0bd82b0f1aa5b314d946fde160159f97.tar.gz tcl-08d7c1eb0bd82b0f1aa5b314d946fde160159f97.tar.bz2 |
* generic/tclCompExpr.c: Moved a misplaced declaration that blocked
compilation on VC++.
* generic/tclExecute.c: Silenced several VC++ compiler warnings about
converting 'long' to 'unsigned short'.
Diffstat (limited to 'generic/tclCompExpr.c')
-rw-r--r-- | generic/tclCompExpr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclCompExpr.c b/generic/tclCompExpr.c index 36be6eb..a53a6f1 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.87 2007/10/15 21:27:48 dgp Exp $ + * RCS: @(#) $Id: tclCompExpr.c,v 1.88 2007/10/17 04:35:18 kennykb Exp $ */ #include "tclInt.h" @@ -751,10 +751,11 @@ ParseExpr( && (lastStart[2] >= '0') && (lastStart[2] <= '9')) { const char *end = lastStart + 2; + Tcl_Obj* copy; while (isdigit(*end)) { end++; } - Tcl_Obj *copy = Tcl_NewStringObj(lastStart, + copy = Tcl_NewStringObj(lastStart, end - lastStart); if (TclCheckBadOctal(NULL, Tcl_GetString(copy))) { |