summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
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/tclBasic.c
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/tclBasic.c')
-rw-r--r--generic/tclBasic.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 7be14aa..22a8379 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.57 2002/06/11 13:22:35 msofer Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.58 2002/06/11 15:42:19 msofer Exp $
*/
#include "tclInt.h"
@@ -109,7 +109,7 @@ static CmdInfo builtInCmds[] = {
{"format", (Tcl_CmdProc *) NULL, Tcl_FormatObjCmd,
(CompileProc *) NULL, 1},
{"global", (Tcl_CmdProc *) NULL, Tcl_GlobalObjCmd,
- TclCompileGlobalCmd, 1},
+ (CompileProc *) NULL, 1},
{"if", (Tcl_CmdProc *) NULL, Tcl_IfObjCmd,
TclCompileIfCmd, 1},
{"incr", (Tcl_CmdProc *) NULL, Tcl_IncrObjCmd,
@@ -173,9 +173,9 @@ static CmdInfo builtInCmds[] = {
{"uplevel", (Tcl_CmdProc *) NULL, Tcl_UplevelObjCmd,
(CompileProc *) NULL, 1},
{"upvar", (Tcl_CmdProc *) NULL, Tcl_UpvarObjCmd,
- TclCompileUpvarCmd, 1},
+ (CompileProc *) NULL, 1},
{"variable", (Tcl_CmdProc *) NULL, Tcl_VariableObjCmd,
- TclCompileVariableCmd, 1},
+ (CompileProc *) NULL, 1},
{"while", (Tcl_CmdProc *) NULL, Tcl_WhileObjCmd,
TclCompileWhileCmd, 1},