diff options
author | ericm <ericm> | 2000-01-13 20:33:09 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-01-13 20:33:09 (GMT) |
commit | 2df683089994bc1bbc39f633ddbfa92a57b0024f (patch) | |
tree | 2ab75593da54c94ef8f64f640eb3be3aa97d00aa /ChangeLog | |
parent | dee657ae620fbab5edb1f2fd5a11452a61b605ba (diff) | |
download | tcl-2df683089994bc1bbc39f633ddbfa92a57b0024f.zip tcl-2df683089994bc1bbc39f633ddbfa92a57b0024f.tar.gz tcl-2df683089994bc1bbc39f633ddbfa92a57b0024f.tar.bz2 |
* tests/cmdIL.test: Added tests for lsort -dictionary with
characters that occur between Z and a in ASCII.
* generic/tclCmdIL.c: Modified DictionaryCompare function (used by
lsort -dictionary) to do upper/lower case equivalency before doing
character comparisons, instead of after. This fixes bug #1357, in
which lsort -dictionary [list ` AA c CC] and lsort -dictionary
[list AA c ` CC] gave different (and both wrong) results.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -1,5 +1,20 @@ +2000-01-13 Eric Melski <ericm@scriptics.com> + + * tests/cmdIL.test: Added tests for lsort -dictionary with + characters that occur between Z and a in ASCII. + + * generic/tclCmdIL.c: Modified DictionaryCompare function (used by + lsort -dictionary) to do upper/lower case equivalency before doing + character comparisons, instead of after. This fixes bug #1357, in + which lsort -dictionary [list ` AA c CC] and lsort -dictionary + [list AA c ` CC] gave different (and both wrong) results. + 2000-01-12 Eric Melski <ericm@scriptics.com> + * tests/clock.test: Added tests for "next <day-of-week>" and + "<day-of-week>" + Added tests for "monday 1 week ago", etc, from RFE #3671. + * doc/tests/clock.test: Added numerous tests for clock scan. * doc/generic/tclGetDate.y: Fixed some shift/reduce conflicts in |