diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-19 11:13:10 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-19 11:13:10 (GMT) |
commit | 31903fa397abb5667586412419aff2b8fa18d98c (patch) | |
tree | 6d7c0b165d8533a48f6fa7278cbece64df4efc5a /generic/tclCmdMZ.c | |
parent | c2fe65f1b2b9c6fdcfd6020d461ec6817899f224 (diff) | |
download | tcl-31903fa397abb5667586412419aff2b8fa18d98c.zip tcl-31903fa397abb5667586412419aff2b8fa18d98c.tar.gz tcl-31903fa397abb5667586412419aff2b8fa18d98c.tar.bz2 |
improvements to comments
Diffstat (limited to 'generic/tclCmdMZ.c')
-rw-r--r-- | generic/tclCmdMZ.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/generic/tclCmdMZ.c b/generic/tclCmdMZ.c index e4ae079..662b201 100644 --- a/generic/tclCmdMZ.c +++ b/generic/tclCmdMZ.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCmdMZ.c,v 1.157 2007/11/11 19:32:14 msofer Exp $ + * RCS: @(#) $Id: tclCmdMZ.c,v 1.158 2007/11/19 11:13:10 dkf Exp $ */ #include "tclInt.h" @@ -2957,7 +2957,7 @@ Tcl_SwitchObjCmd( } /* - * TIP #280. Make invoking context available to switch branch. + * TIP #280: Make invoking context available to switch branch. */ result = TclEvalObjEx(interp, objv[j], 0, ctxPtr, j); @@ -3145,6 +3145,22 @@ Tcl_WhileObjCmd( return result; } +/* + *---------------------------------------------------------------------- + * + * TclListLines -- + * + * ??? + * + * Results: + * Filled in array of line numbers? + * + * Side effects: + * None. + * + *---------------------------------------------------------------------- + */ + void TclListLines( CONST char *listStr, /* Pointer to string with list structure. |