summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorrjohnson <rjohnson>1998-10-13 18:44:15 (GMT)
committerrjohnson <rjohnson>1998-10-13 18:44:15 (GMT)
commitb091a84076a589e3188f5762fcbaf1ccc3556dda (patch)
tree2f156e604f9e353b3135cfa37592af5cec5a76f5 /changes
parent7e68669921ece34a9b75205b450efba1f3533b52 (diff)
downloadtcl-b091a84076a589e3188f5762fcbaf1ccc3556dda.zip
tcl-b091a84076a589e3188f5762fcbaf1ccc3556dda.tar.gz
tcl-b091a84076a589e3188f5762fcbaf1ccc3556dda.tar.bz2
Fixed bug in "info complete" - it did not handle NULLs correctly.
Diffstat (limited to 'changes')
-rw-r--r--changes8
1 files changed, 6 insertions, 2 deletions
diff --git a/changes b/changes
index 31f8f87..e886008 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.23 1998/10/05 22:32:56 escoffon Exp $
+RCS: @(#) $Id: changes,v 1.24 1998/10/13 18:44:15 rjohnson Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3622,4 +3622,8 @@ Windows, MYDLLNAME.DLL was sourced, and mydllname.dll loaded. (EMS)
10/5/98 (new feature) Created a new Tcl_Obj type, "procbody". This object's
internal representation holds a pointer to a Proc structure. Extended
-TclCreateProc to take both strings and "procbody"
+TclCreateProc to take both strings and "procbody". (EMS)
+
+10/13/98 (bug fix) The "info complete" command can now handle strings
+with NULLs embedded. Thanks to colin@field.medicine.adelaide.edu.au
+for providing this fix. (RJ)