summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormsofer <msofer@noemail.net>2002-06-11 13:22:34 (GMT)
committermsofer <msofer@noemail.net>2002-06-11 13:22:34 (GMT)
commitb0f393b079cbd4be03e3ae512753ece8abe985a7 (patch)
treef48d6f4358e3a6d0aae4ee6cfc304b3e7d159c67 /ChangeLog
parent82af266f8fb14198deae1d09104a5445135c79d2 (diff)
downloadtcl-b0f393b079cbd4be03e3ae512753ece8abe985a7.zip
tcl-b0f393b079cbd4be03e3ae512753ece8abe985a7.tar.gz
tcl-b0f393b079cbd4be03e3ae512753ece8abe985a7.tar.bz2
Fix for [info locals] bug #567386; added compile functions for
[global], [upvar] and [variable]. FossilOrigin-Name: d33879f9669f23ae926d38546b015269bb6f5bc5
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog17
1 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eaa3333..ca8212a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,19 @@
-2002-06-10 Miguel Sofer <msofer@users.sourceforge.net>
+2002-06-11 Miguel Sofer <msofer@users.sourceforge.net>
+
+ * doc/global.n:
+ * doc/info.n:
+ * test/info.test:
+ * generic/tclCmdIL.c: fix for [Bug 567386], [info locals] was
+ reporting some linked variables.
+
+ * generic/tclBasic.c:
+ * generic/tclCompCmds.c:
+ * generic/tclInt.h: added compile functions for [global],
+ [variable] and [upvar]. They just declare the new local variables,
+ the commands themselves are not compiled-in. This gives a notably
+ faster read access to these linked variables.
+
+2002-06-11 Miguel Sofer <msofer@users.sourceforge.net>
* generic/tclExecute.c: optimised algorithm for exception range
lookup; part of [Patch 453709].