summaryrefslogtreecommitdiffstats
path: root/changes
diff options
context:
space:
mode:
authorrjohnson <rjohnson@noemail.net>1998-10-13 20:05:37 (GMT)
committerrjohnson <rjohnson@noemail.net>1998-10-13 20:05:37 (GMT)
commit41d41f508d9716095097ca8c7fcc86352aacedd1 (patch)
treebda58da65373a532cb5f7c35c63d67fd5c993e59 /changes
parent7d3eac944599cca248d0b977c16f8512eae2ad92 (diff)
downloadtcl-41d41f508d9716095097ca8c7fcc86352aacedd1.zip
tcl-41d41f508d9716095097ca8c7fcc86352aacedd1.tar.gz
tcl-41d41f508d9716095097ca8c7fcc86352aacedd1.tar.bz2
Fixed bug in "lsort -dictionary" that caused problems when comparing
numbers that started with 0. FossilOrigin-Name: bdfc546373733aab3cedcbc85dff3f5d60f4fd74
Diffstat (limited to 'changes')
-rw-r--r--changes8
1 files changed, 7 insertions, 1 deletions
diff --git a/changes b/changes
index e886008..912354e 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.24 1998/10/13 18:44:15 rjohnson Exp $
+RCS: @(#) $Id: changes,v 1.25 1998/10/13 20:05:38 rjohnson Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3627,3 +3627,9 @@ 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)
+
+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)
+