summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-08-09 16:30:15 (GMT)
committerhobbs <hobbs>1999-08-09 16:30:15 (GMT)
commit4ff6daaaf9efbd9a03407ec0362aee849b29cb7d (patch)
treeb85652035065ea5ecd1aa69222211385b3e54fb7
parentd4cffe067f71e3feb8a87d0beff6b3258b563d0d (diff)
downloadtcl-4ff6daaaf9efbd9a03407ec0362aee849b29cb7d.zip
tcl-4ff6daaaf9efbd9a03407ec0362aee849b29cb7d.tar.gz
tcl-4ff6daaaf9efbd9a03407ec0362aee849b29cb7d.tar.bz2
1999-08-09 Jeff Hobbs <hobbs@scriptics.com>
* doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952] * doc/array.n: clarified array pattern docs [Bug: 1330] * doc/clock.n: fixed clock docs [Bug: 693] * doc/lindex.n: clarified to account for new end-int behavior. * doc/string.n: fixed formatting errors [Bug: 2188 2189] * doc/tclvars.n: fixed doc error [Bug: 2042] * library/init.tcl: fixed path handling in auto_execok (it could miss including the normal path on some Windows machines) [Bug: 1276]
-rw-r--r--ChangeLog15
1 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1c7e2db..0714df6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,11 +1,22 @@
+1999-08-09 Jeff Hobbs <hobbs@scriptics.com>
+
+ * doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952]
+ * doc/array.n: clarified array pattern docs [Bug: 1330]
+ * doc/clock.n: fixed clock docs [Bug: 693]
+ * doc/lindex.n: clarified to account for new end-int behavior.
+ * doc/string.n: fixed formatting errors [Bug: 2188 2189]
+ * doc/tclvars.n: fixed doc error [Bug: 2042]
+ * library/init.tcl: fixed path handling in auto_execok (it could
+ miss including the normal path on some Windows machines) [Bug: 1276]
+
1999-08-05 Jeff Hobbs <hobbs@scriptics.com>
* doc/tclvars.n: Made it clear that tcl_pkgPath was not set
for Windows (already mentioned in init.tcl) [Bug: 2455]
* generic/tclLiteral.c: fixed reference to bytes that might
not be null terminated (using objPtr->bytes, which is) [Bug: 2496]
- * library/http2.1/http.tcl: Made use of "i" in init section not
- use global var. [Bug: 2502]
+ * library/http2.1/http.tcl: Made use of "i" in init section use
+ local var and start at 0 (was 1). [Bug: 2502]
1999-08-04 Scott Stanton <stanton@scriptics.com>