diff options
author | dkf <dkf@noemail.net> | 2002-02-25 15:23:01 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2002-02-25 15:23:01 (GMT) |
commit | 30d767492844e588fb499e73f624f96d3425dbcc (patch) | |
tree | 4ddc7fab58829376dd96310a48e9fbf8b76dcf81 /generic | |
parent | 5e9d8b7ad652200a97b3757e9720a7e0ace126e7 (diff) | |
download | tcl-30d767492844e588fb499e73f624f96d3425dbcc.zip tcl-30d767492844e588fb499e73f624f96d3425dbcc.tar.gz tcl-30d767492844e588fb499e73f624f96d3425dbcc.tar.bz2 |
Added clarification comment.
FossilOrigin-Name: 29313c063dad9ad30af5c32ed51014b1867773c5
Diffstat (limited to 'generic')
-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); } |