summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwelch <welch>1999-07-07 02:08:35 (GMT)
committerwelch <welch>1999-07-07 02:08:35 (GMT)
commit996f9cdcd32389e8d8b335b748145e3d84e1fea4 (patch)
treee99545505487b6c11f274af5d890dd592e149ea0
parent7c8e505f416a5b839dfac24a61515fe6e021ae44 (diff)
downloadtcl-996f9cdcd32389e8d8b335b748145e3d84e1fea4.zip
tcl-996f9cdcd32389e8d8b335b748145e3d84e1fea4.tar.gz
tcl-996f9cdcd32389e8d8b335b748145e3d84e1fea4.tar.bz2
Back-fitted notes about my recent changes
-rw-r--r--ChangeLog33
1 files changed, 33 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f7d15b0..719774c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,36 @@
+1999-0706 <welch@scriptics.com>
+
+ * library/http2.0/http.tcl: Fixed the -timeout option so it
+ handles timeouts that occur during connection attempts to
+ hosts that are down (the only case that really matters!)
+
+1999-0703 <welch@scriptics.com>
+
+ * doc/ChnlStack.3:
+ * generic/tcl.decls:
+ * generic/tclIO.c: Added a new variant of the "Trf patch"
+ from Andreas Kupres that adds new C APIs Tcl_StackChannel,
+ Tcl_UnstackChannel, and Tcl_GetStackedChannel.
+
+1999-0703 <welch@scriptics.com>
+
+ * generic/tclNotify.c:
+ * unix/tclUnixNotfy.c:
+ * unix/tclXtTest.c:
+ * unix/tclXtNotify.c:
+ * win/tclWinNotify.c:
+ * mac/tclMacNotify.c: Added Tcl_SetNotifier and the associated
+ hook points in the notifiers to be able to replace the notifier
+ calls at runtime The Xt notifier and test program use this hook.
+
+1999-0703 <welch@scriptics.com>
+
+ * generic/tclParse.c: Changed parsing of variable names to
+ allow empty array names. Now "$(foo)" is a variable reference!
+ Previous you had to use something like $::(foo), which is slower.
+ This change is requested by Jean-Luc Fontaine for his STOOOP
+ package.
+
1999-0701 <redman@scriptics.com>
* generic/tclCmdAH.c: