diff options
| author | dgp@users.sourceforge.net <dgp> | 2003-05-01 19:57:47 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2003-05-01 19:57:47 (GMT) |
| commit | a2a1e65636b0f7884cf9b0630f3d2156ea18a2ea (patch) | |
| tree | 5e8d139c9732baa8b9e233d9ce6c6cb149f8e39f /generic/tclCompCmds.c | |
| parent | f9b9eba5416c42852b449958580652fc50f82ff5 (diff) | |
| download | tcl-a2a1e65636b0f7884cf9b0630f3d2156ea18a2ea.zip tcl-a2a1e65636b0f7884cf9b0630f3d2156ea18a2ea.tar.gz tcl-a2a1e65636b0f7884cf9b0630f3d2156ea18a2ea.tar.bz2 | |
corrected comment about the default matching mode for [switch].
Diffstat (limited to 'generic/tclCompCmds.c')
| -rw-r--r-- | generic/tclCompCmds.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tclCompCmds.c b/generic/tclCompCmds.c index ce8c76d..709359d 100644 --- a/generic/tclCompCmds.c +++ b/generic/tclCompCmds.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompCmds.c,v 1.47 2003/04/28 10:05:27 dkf Exp $ + * RCS: @(#) $Id: tclCompCmds.c,v 1.48 2003/05/01 19:57:47 dgp Exp $ */ #include "tclInt.h" @@ -2899,8 +2899,9 @@ TclCompileSwitchCmd(interp, parsePtr, envPtr) } else if ((size == 2) && (parsePtr->numWords == 4) && !strncmp(chrs, "--", 2)) { /* - * If no control flag present, use glob matching. We end up - * re-checking this word, but that's the way things are... + * If no control flag present, use exact matching (the default). + * + * We end up re-checking this word, but that's the way things are... */ mode = Switch_Exact; } else { |
