diff options
author | Kevin B Kenny <kennykb@acm.org> | 2001-04-27 22:11:51 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2001-04-27 22:11:51 (GMT) |
commit | 1dd4412b8b297335a3afc8b2fadb3b8e1a5c1008 (patch) | |
tree | 78af95402457478beaea317227964953c26db4eb /generic/tclInt.h | |
parent | a45e56585d9c1954635d19af697119c4ed0f8fc2 (diff) | |
download | tcl-1dd4412b8b297335a3afc8b2fadb3b8e1a5c1008.zip tcl-1dd4412b8b297335a3afc8b2fadb3b8e1a5c1008.tar.gz tcl-1dd4412b8b297335a3afc8b2fadb3b8e1a5c1008.tar.bz2 |
Added several missing CONSTs in calls to TclGetNamespaceForQualName
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index cb3e6a0..34a995d 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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: tclInt.h,v 1.51 2001/04/24 20:59:18 kennykb Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.52 2001/04/27 22:11:51 kennykb Exp $ */ #ifndef _TCLINT @@ -1653,7 +1653,7 @@ EXTERN int TclCreatePipeline _ANSI_ARGS_((Tcl_Interp *interp, TclFile *inPipePtr, TclFile *outPipePtr, TclFile *errFilePtr)); EXTERN int TclCreateProc _ANSI_ARGS_((Tcl_Interp *interp, - Namespace *nsPtr, char *procName, + Namespace *nsPtr, CONST char *procName, Tcl_Obj *argsPtr, Tcl_Obj *bodyPtr, Proc **procPtrPtr)); EXTERN void TclDeleteCompiledLocalVars _ANSI_ARGS_(( |