summaryrefslogtreecommitdiffstats
path: root/generic/tclScan.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2001-10-09 15:30:50 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2001-10-09 15:30:50 (GMT)
commitdf5d585e924899951de3e51b66f075deb9f87fd3 (patch)
tree5fca55f4f4d94c4c83165a1ffc18c0649234c7b2 /generic/tclScan.c
parent4506a5a88a87df2dd20717b40586705376b88f37 (diff)
downloadtcl-df5d585e924899951de3e51b66f075deb9f87fd3.zip
tcl-df5d585e924899951de3e51b66f075deb9f87fd3.tar.gz
tcl-df5d585e924899951de3e51b66f075deb9f87fd3.tar.bz2
Fixes to make whole test suite clean
Diffstat (limited to 'generic/tclScan.c')
-rw-r--r--generic/tclScan.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/generic/tclScan.c b/generic/tclScan.c
index 4129c3a..e2221a8 100644
--- a/generic/tclScan.c
+++ b/generic/tclScan.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclScan.c,v 1.8.2.2 2001/10/04 14:13:07 dkf Exp $
+ * RCS: @(#) $Id: tclScan.c,v 1.8.2.3 2001/10/09 15:30:51 dkf Exp $
*/
#include "tclInt.h"
@@ -394,9 +394,6 @@ ValidateFormat(interp, format, numVars, totalSubs)
* Fall through!
*/
case 'n':
- case 'f':
- case 'e':
- case 'g':
case 's':
if (flags & SCAN_LONGER) {
invalidLonger:
@@ -410,11 +407,14 @@ ValidateFormat(interp, format, numVars, totalSubs)
* Fall through!
*/
case 'd':
+ case 'e':
+ case 'f':
+ case 'g':
case 'i':
case 'o':
- case 'x':
case 'u':
- break;
+ case 'x':
+ break;
/*
* Bracket terms need special checking
*/
@@ -1059,6 +1059,7 @@ Tcl_ScanObjCmd(dummy, interp, objc, objv)
if ((width == 0) || (width > sizeof(buf) - 1)) {
width = sizeof(buf) - 1;
}
+ flags &= ~SCAN_LONGER;
flags |= SCAN_SIGNOK | SCAN_NODIGITS | SCAN_PTOK | SCAN_EXPOK;
for (end = buf; width > 0; width--) {
switch (*string) {