summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorrjohnson <rjohnson>1998-10-13 20:30:21 (GMT)
committerrjohnson <rjohnson>1998-10-13 20:30:21 (GMT)
commit2145c0e799d0659cd675a37728d7fb9c64f04904 (patch)
treea5274f70d346f2ba069c979b043ef055b8777e35 /changes
parent34fd6003c9fe9da83ffe806108ebbd4bbffb796e (diff)
downloadtcl-2145c0e799d0659cd675a37728d7fb9c64f04904.zip
tcl-2145c0e799d0659cd675a37728d7fb9c64f04904.tar.gz
tcl-2145c0e799d0659cd675a37728d7fb9c64f04904.tar.bz2
Fixed bug in Tcl_SetListObj - it used to create invalid Tcl_Obj if you passed
in 0 elements. Despite what docs said. Also updated a few copyright notices.
Diffstat (limited to 'changes')
-rw-r--r--changes9
1 files changed, 6 insertions, 3 deletions
diff --git a/changes b/changes
index 912354e..f305fb9 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.25 1998/10/13 20:05:38 rjohnson Exp $
+RCS: @(#) $Id: changes,v 1.26 1998/10/13 20:30:21 rjohnson Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3630,6 +3630,9 @@ for providing this fix. (RJ)
10/13/98 (bug fix) The "lsort -dictionary" command did not properly
handle some numbers starting with 0. Thanks to Richard Hipp
-<drh@acm.org> for the creating the patch and Viktor Dukhovni
-<Viktor-Dukhovni@deshaw.com> for submitting the it to Scriptics. (RJ)
+<drh@acm.org> for submitting the fix to Scriptics. (RJ)
+10/13/98 (bug fix) The function Tcl_SetListObj was creating an invalid
+Tcl_Obj if the list had zero elements (despite what the comments said
+it would do). Thanks to Sebastian Wangnick for reporting the
+problem. (RJ)