summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-02-28 05:11:24 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-02-28 05:11:24 (GMT)
commite74c02673aec97beeb6f8ae55376bd5b88d9e3cc (patch)
tree2b9c586de5573bc73d089f27034488ef9f4f1972 /ChangeLog
parentdfa5329058b763cbe42687ceba9095b5b13c5c2a (diff)
downloadtcl-e74c02673aec97beeb6f8ae55376bd5b88d9e3cc.zip
tcl-e74c02673aec97beeb6f8ae55376bd5b88d9e3cc.tar.gz
tcl-e74c02673aec97beeb6f8ae55376bd5b88d9e3cc.tar.bz2
* doc/GetIndex.3:
* generic/tcl.decls (Tcl_GetIndexFromObjStruct): * generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): Revised the prototype of the Tcl_GetIndexFromObjStruct to take its struct table as a (CONST VOID *) argument, better describing what it is, maintaining source compatibility, and adding CONST correctness according to TIP 27. Thanks to Joe English for an elegant solution. [Bug 520304] * generic/tclDecls.h: make genstubs
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 23517ac..c379368 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2002-02-27 Don Porter <dgp@users.sourceforge.net>
+ * doc/GetIndex.3:
+ * generic/tcl.decls (Tcl_GetIndexFromObjStruct):
+ * generic/tclIndexObj.c (Tcl_GetIndexFromObjStruct): Revised the
+ prototype of the Tcl_GetIndexFromObjStruct to take its struct
+ table as a (CONST VOID *) argument, better describing what it is,
+ maintaining source compatibility, and adding CONST correctness
+ according to TIP 27. Thanks to Joe English for an elegant
+ solution. [Bug 520304]
+
+ * generic/tclDecls.h: make genstubs
+
* generic/tclMain.c (Tcl_Main,StdinProc): Corrected some reference
count management errors on the interactive command Tcl_Obj found by
Purify. Thanks to Jeff Hobbs for the report and assistance.