summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorrjohnson <rjohnson@noemail.net>1998-10-13 18:44:15 (GMT)
committerrjohnson <rjohnson@noemail.net>1998-10-13 18:44:15 (GMT)
commit0728c98865e74d0166ad157308c0b19f8bd0d679 (patch)
tree2f156e604f9e353b3135cfa37592af5cec5a76f5 /changes
parentb26da50c3bd52e31ce8372c1b21d54085ccb7ad2 (diff)
downloadtcl-0728c98865e74d0166ad157308c0b19f8bd0d679.zip
tcl-0728c98865e74d0166ad157308c0b19f8bd0d679.tar.gz
tcl-0728c98865e74d0166ad157308c0b19f8bd0d679.tar.bz2
Fixed bug in "info complete" - it did not handle NULLs correctly.
FossilOrigin-Name: 5ae085bcc21de9de1f5e59b1e85bc8909c02ac60
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)