diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-05 14:55:14 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-11-05 14:55:14 (GMT) |
commit | 17d34ed9ea3e7f173fad801e48240de9a99d77e8 (patch) | |
tree | e444cd464f93f10ffab5483b5917f5eb87b7cc2b /generic/tclVar.c | |
parent | 18dbdc3e40e19a7266c19924537e6914840adbe5 (diff) | |
parent | cd1f27f0cf22ec6b5b83f2fd48c1ba93e5c27be2 (diff) | |
download | tcl-17d34ed9ea3e7f173fad801e48240de9a99d77e8.zip tcl-17d34ed9ea3e7f173fad801e48240de9a99d77e8.tar.gz tcl-17d34ed9ea3e7f173fad801e48240de9a99d77e8.tar.bz2 |
Added bytecode compilation of many Tcl commands, merged from development branch.
Diffstat (limited to 'generic/tclVar.c')
-rw-r--r-- | generic/tclVar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclVar.c b/generic/tclVar.c index e31e9cf..1c01e41 100644 --- a/generic/tclVar.c +++ b/generic/tclVar.c @@ -4224,15 +4224,15 @@ TclInitArrayCmd( static const EnsembleImplMap arrayImplMap[] = { {"anymore", ArrayAnyMoreCmd, NULL, NULL, NULL, 0}, {"donesearch", ArrayDoneSearchCmd, NULL, NULL, NULL, 0}, - {"exists", ArrayExistsCmd, NULL, NULL, NULL, 0}, + {"exists", ArrayExistsCmd, TclCompileArrayExistsCmd, NULL, NULL, 0}, {"get", ArrayGetCmd, NULL, NULL, NULL, 0}, {"names", ArrayNamesCmd, NULL, NULL, NULL, 0}, {"nextelement", ArrayNextElementCmd, NULL, NULL, NULL, 0}, - {"set", ArraySetCmd, NULL, NULL, NULL, 0}, + {"set", ArraySetCmd, TclCompileArraySetCmd, NULL, NULL, 0}, {"size", ArraySizeCmd, NULL, NULL, NULL, 0}, {"startsearch", ArrayStartSearchCmd, NULL, NULL, NULL, 0}, {"statistics", ArrayStatsCmd, NULL, NULL, NULL, 0}, - {"unset", ArrayUnsetCmd, NULL, NULL, NULL, 0}, + {"unset", ArrayUnsetCmd, TclCompileArrayUnsetCmd, NULL, NULL, 0}, {NULL, NULL, NULL, NULL, NULL, 0} }; |