diff options
author | dgp <dgp@users.sourceforge.net> | 2005-11-12 04:08:05 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-11-12 04:08:05 (GMT) |
commit | c0e9fb0f2c36cf8af0d07e5213b5725a7a72a4a4 (patch) | |
tree | 9afdae3359ab7803cc6f063cb57ab4f91e978038 /generic/tclInt.h | |
parent | 0a37d70aa58095c211bed13c191e5005483fe78c (diff) | |
download | tcl-c0e9fb0f2c36cf8af0d07e5213b5725a7a72a4a4.zip tcl-c0e9fb0f2c36cf8af0d07e5213b5725a7a72a4a4.tar.gz tcl-c0e9fb0f2c36cf8af0d07e5213b5725a7a72a4a4.tar.bz2 |
* generic/tclInt.h: Revised TclParseNumber interface to enable
* generic/tclScan.c: revision to the [scan] command implementation
* generic/tclStrToD.c: to permit tests scan-4.44,55 to pass again.
[Bug 1348067].
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 0a6fa66..480507d 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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: tclInt.h,v 1.256 2005/11/04 02:13:41 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.257 2005/11/12 04:08:05 dgp Exp $ */ #ifndef _TCLINT @@ -2122,8 +2122,8 @@ MODULE_SCOPE int TclParseBackslash(CONST char *src, MODULE_SCOPE int TclParseHex(CONST char *src, int numBytes, Tcl_UniChar *resultPtr); MODULE_SCOPE int TclParseNumber(Tcl_Interp* interp, Tcl_Obj* objPtr, - CONST char* type, CONST char* string, - size_t length, CONST char** endPtrPtr, int flags); + CONST char *expected, CONST char* bytes, + int numBytes, CONST char** endPtrPtr, int flags); MODULE_SCOPE void TclParseInit(Tcl_Interp *interp, CONST char *string, int numBytes, Tcl_Parse *parsePtr); #if 0 |