diff options
author | dgp <dgp@users.sourceforge.net> | 2002-12-11 20:30:11 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-12-11 20:30:11 (GMT) |
commit | 0ebb8899a331886beaa24f4ff1ab19b68fd590d9 (patch) | |
tree | 24cdd62ccfa260026ac3007e038023c261238bd0 /generic/tclParseExpr.c | |
parent | 2946cae4563a26a948d74ef19280df5da4b3ee9f (diff) | |
download | tcl-0ebb8899a331886beaa24f4ff1ab19b68fd590d9.zip tcl-0ebb8899a331886beaa24f4ff1ab19b68fd590d9.tar.gz tcl-0ebb8899a331886beaa24f4ff1ab19b68fd590d9.tar.bz2 |
* generic/tclParseExpr.c (TclParseInteger): Return 1 for the
string "0x" (recognize leading "0" as an integer). [Bug 648441].
* tests/parseExpr.test (parseExpr-19.1): Test for Bug 648441.
Diffstat (limited to 'generic/tclParseExpr.c')
-rw-r--r-- | generic/tclParseExpr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclParseExpr.c b/generic/tclParseExpr.c index 077dddb..85be0cd 100644 --- a/generic/tclParseExpr.c +++ b/generic/tclParseExpr.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: tclParseExpr.c,v 1.15 2002/08/05 03:24:41 dgp Exp $ + * RCS: @(#) $Id: tclParseExpr.c,v 1.16 2002/12/11 20:30:16 dgp Exp $ */ #include "tclInt.h" @@ -1918,7 +1918,9 @@ TclParseInteger(string, numBytes) if (scanned) { return scanned + 2; } - return 0; + + /* Recognize the 0 as valid integer, but x is left behind */ + return 1; } while (numBytes && isdigit(UCHAR(*p))) { /* INTL: digit */ numBytes--; p++; |