summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-07-16 16:38:41 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-07-16 16:38:41 (GMT)
commit67208e7cb489fda2de1e63a9fe782b4f3794f486 (patch)
tree0609dbf274e3a505a8fe84c7e9d77242743f110b /generic
parent7ef262b2d147032fc8605a5fceb798aef1df02ae (diff)
downloadtcl-67208e7cb489fda2de1e63a9fe782b4f3794f486.zip
tcl-67208e7cb489fda2de1e63a9fe782b4f3794f486.tar.gz
tcl-67208e7cb489fda2de1e63a9fe782b4f3794f486.tar.bz2
const fix for new variable code
Diffstat (limited to 'generic')
-rw-r--r--generic/tclInt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 6a891e0..7eac73d 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.99 2002/07/16 01:12:50 msofer Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.100 2002/07/16 16:38:41 dgp Exp $
*/
#ifndef _TCLINT
@@ -91,11 +91,11 @@ typedef struct Tcl_ResolvedVarInfo {
typedef int (Tcl_ResolveCompiledVarProc) _ANSI_ARGS_((
- Tcl_Interp* interp, CONST char* name, int length,
+ Tcl_Interp* interp, CONST84 char* name, int length,
Tcl_Namespace *context, Tcl_ResolvedVarInfo **rPtr));
typedef int (Tcl_ResolveVarProc) _ANSI_ARGS_((
- Tcl_Interp* interp, CONST char* name, Tcl_Namespace *context,
+ Tcl_Interp* interp, CONST84 char* name, Tcl_Namespace *context,
int flags, Tcl_Var *rPtr));
typedef int (Tcl_ResolveCmdProc) _ANSI_ARGS_((Tcl_Interp* interp,