diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-02-25 15:23:02 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-02-25 15:23:02 (GMT) |
commit | f12100d783d57ed11817d4dbc7f4cdbe5b7dc3f5 (patch) | |
tree | 4ddc7fab58829376dd96310a48e9fbf8b76dcf81 /generic/tclScan.c | |
parent | e6bf045bcbf9d4984bae5b64267c776d41f8d017 (diff) | |
download | tcl-f12100d783d57ed11817d4dbc7f4cdbe5b7dc3f5.zip tcl-f12100d783d57ed11817d4dbc7f4cdbe5b7dc3f5.tar.gz tcl-f12100d783d57ed11817d4dbc7f4cdbe5b7dc3f5.tar.bz2 |
Added clarification comment.
Diffstat (limited to 'generic/tclScan.c')
-rw-r--r-- | generic/tclScan.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generic/tclScan.c b/generic/tclScan.c index 9eb60e7..7d5b093 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.11 2002/02/15 14:28:49 dkf Exp $ + * RCS: @(#) $Id: tclScan.c,v 1.12 2002/02/25 15:23:02 dkf Exp $ */ #include "tclInt.h" @@ -707,6 +707,9 @@ Tcl_ScanObjCmd(dummy, interp, objc, objv) #ifndef TCL_WIDE_INT_IS_LONG flags |= SCAN_LONGER; #endif + /* + * Fall through so we skip to the next character. + */ case 'h': format += Tcl_UtfToUniChar(format, &ch); } |