diff options
author | dgp <dgp@users.sourceforge.net> | 2002-03-20 22:47:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-03-20 22:47:36 (GMT) |
commit | 8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1 (patch) | |
tree | 8f368f02d83a51268df54df95963ddc703bfa767 /generic/tclCmdMZ.c | |
parent | e51eaf9011544d3ccb2756c1e458cc42aeddd877 (diff) | |
download | tcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.zip tcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.tar.gz tcl-8c538d2de4c21bd7ae487e0432aa39d4ae2b9ed1.tar.bz2 |
* Updated interfaces of generic/tclVar.c according
to TIP 27. In particular, the "part2" arguments were CONSTified.
Diffstat (limited to 'generic/tclCmdMZ.c')
-rw-r--r-- | generic/tclCmdMZ.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclCmdMZ.c b/generic/tclCmdMZ.c index ef96e0c..017b407 100644 --- a/generic/tclCmdMZ.c +++ b/generic/tclCmdMZ.c @@ -14,7 +14,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.63 2002/03/01 06:23:08 hobbs Exp $ + * RCS: @(#) $Id: tclCmdMZ.c,v 1.64 2002/03/20 22:47:36 dgp Exp $ */ #include "tclInt.h" @@ -68,7 +68,7 @@ static Tcl_TraceTypeObjCmd* traceSubCmds[] = { }; static char * TraceVarProc _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, char *name1, char *name2, + Tcl_Interp *interp, char *name1, CONST char *name2, int flags)); static void TraceCommandProc _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, CONST char *oldName, @@ -3722,7 +3722,7 @@ TraceVarProc(clientData, interp, name1, name2, flags) ClientData clientData; /* Information about the variable trace. */ Tcl_Interp *interp; /* Interpreter containing variable. */ char *name1; /* Name of variable or array. */ - char *name2; /* Name of element within array; NULL means + CONST char *name2; /* Name of element within array; NULL means * scalar variable is being referenced. */ int flags; /* OR-ed bits giving operation and other * information. */ |