diff options
| author | dgp@users.sourceforge.net <dgp> | 2005-11-12 04:08:05 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2005-11-12 04:08:05 (GMT) |
| commit | a82b5a1cd8f9a4d36af19e76766047d8cd4b1709 (patch) | |
| tree | 9afdae3359ab7803cc6f063cb57ab4f91e978038 /generic/tclInt.h | |
| parent | 5df584aace320cd58882be0de962e08a0dccca2d (diff) | |
| download | tcl-a82b5a1cd8f9a4d36af19e76766047d8cd4b1709.zip tcl-a82b5a1cd8f9a4d36af19e76766047d8cd4b1709.tar.gz tcl-a82b5a1cd8f9a4d36af19e76766047d8cd4b1709.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 |
