summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>1999-08-09 16:30:14 (GMT)
committerhobbs <hobbs@noemail.net>1999-08-09 16:30:14 (GMT)
commit8a2a436694d3c10e88b3a60dc6f8e7ab3b74c295 (patch)
treeb85652035065ea5ecd1aa69222211385b3e54fb7
parent3585e04efd6e178b591f834dfa207a10ca1841dd (diff)
downloadtcl-8a2a436694d3c10e88b3a60dc6f8e7ab3b74c295.zip
tcl-8a2a436694d3c10e88b3a60dc6f8e7ab3b74c295.tar.gz
tcl-8a2a436694d3c10e88b3a60dc6f8e7ab3b74c295.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] FossilOrigin-Name: fa5ab43f53d781a0a0e731405bd8c9e76f7a9d79
-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>