summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2002-06-11 15:42:18 (GMT)
committermsofer <msofer@noemail.net>2002-06-11 15:42:18 (GMT)
commit0425004a9433b1bb5ed35ca3e09949aee8e194c2 (patch)
treea14fcf1723483c4f75d4dcf3eba0ca9c3c19e9e5 /generic/tclInt.h
parentb986302ea6531ba467d38e6b71fe860310cb0e2d (diff)
downloadtcl-0425004a9433b1bb5ed35ca3e09949aee8e194c2.zip
tcl-0425004a9433b1bb5ed35ca3e09949aee8e194c2.tar.gz
tcl-0425004a9433b1bb5ed35ca3e09949aee8e194c2.tar.bz2
optimised read access to local variables created at run-time
FossilOrigin-Name: 348eec187bd72e37ceeae20db5b1de355dea63d3
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index a6d5259..60ea8e1 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.92 2002/06/11 13:22:36 msofer Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.93 2002/06/11 15:42:21 msofer Exp $
*/
#ifndef _TCLINT
@@ -2127,8 +2127,6 @@ EXTERN int TclCompileForCmd _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
EXTERN int TclCompileForeachCmd _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
-EXTERN int TclCompileGlobalCmd _ANSI_ARGS_((Tcl_Interp *interp,
- Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
EXTERN int TclCompileIfCmd _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
EXTERN int TclCompileIncrCmd _ANSI_ARGS_((Tcl_Interp *interp,
@@ -2151,10 +2149,6 @@ EXTERN int TclCompileSetCmd _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
EXTERN int TclCompileStringCmd _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
-EXTERN int TclCompileUpvarCmd _ANSI_ARGS_((Tcl_Interp *interp,
- Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
-EXTERN int TclCompileVariableCmd _ANSI_ARGS_((Tcl_Interp *interp,
- Tcl_Parse *parsePtr, struct CompileEnv *envPtr));
EXTERN int TclCompileWhileCmd _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_Parse *parsePtr, struct CompileEnv *envPtr));