summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-12-22 19:49:29 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-12-22 19:49:29 (GMT)
commitb67c18e73290a59c388687dd6df4015f135ba2c4 (patch)
tree807b4f0c17bee9346fd575add70440533142709f /ChangeLog
parentf7e02c57c848c495a77975b927a0f4076bf4822c (diff)
downloadtcl-b67c18e73290a59c388687dd6df4015f135ba2c4.zip
tcl-b67c18e73290a59c388687dd6df4015f135ba2c4.tar.gz
tcl-b67c18e73290a59c388687dd6df4015f135ba2c4.tar.bz2
[Bug 2918962]: Stop crash when -index and -stride are used together in [lsort].
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog51
1 files changed, 29 insertions, 22 deletions
diff --git a/ChangeLog b/ChangeLog
index 7817c07..c047d4f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,30 +1,37 @@
+2009-12-22 Donal K. Fellows <dkf@users.sf.net>
+
+ * generic/tclCmdIL.c (Tcl_LsortObjCmd): [Bug 2918962]: Stop crash when
+ -index and -stride are used together.
+
2009-12-21 Jan Nijtmans <nijtmans@users.sf.net>
- * generic/tclThreadStorage.c: Fix gcc warning, using gcc-4.3.4 on cygwin
- warning: missing initializer
- * generic/tclOOInt.h: prevent conflict with DUPLICATE
- definition in WINAPI's nb30.h
- * generic/rege_dfa.c: Fix macro conflict on CYGWIN: don't use "small".
- * generic/tcl.h Include <winsock2.h> before <stdio.h> on CYGWIN
- * generic/tclPathObj.c
- * generic/tclPort.h
- * tests/env.test: Don't unset WINDIR and TERM, it has a special meaning
- on CYGWIN (both in UNIX and WIN32 mode!)
- * generic/tclPlatDecls.h: Include <tchar.h> through tclPlatDecls.h
- * win/tclWinPort.h stricmp -> strcasecmp
- * win/tclWinDde.c _wcsicmp -> wcscasecmp
- * win/tclWinFile.c
- * win/tclWinPipe.c
- * win/tclWinSock.c
- * unix/tcl.m4 Add dynamic loading support to CYGWIN
- * unix/configure (regenerated)
- * unix/Makefile.in
+ * generic/tclThreadStorage.c: Fix gcc warning, using gcc-4.3.4 on
+ cygwin: missing initializer
+ * generic/tclOOInt.h: Prevent conflict with DUPLICATE
+ definition in WINAPI's nb30.h
+ * generic/rege_dfa.c: Fix macro conflict on CYGWIN: don't use
+ "small".
+ * generic/tcl.h Include <winsock2.h> before <stdio.h> on
+ CYGWIN
+ * generic/tclPathObj.c
+ * generic/tclPort.h
+ * tests/env.test: Don't unset WINDIR and TERM, it has a
+ special meaning on CYGWIN (both in UNIX
+ and WIN32 mode!)
+ * generic/tclPlatDecls.h: Include <tchar.h> through tclPlatDecls.h
+ * win/tclWinPort.h stricmp -> strcasecmp
+ * win/tclWinDde.c _wcsicmp -> wcscasecmp
+ * win/tclWinFile.c
+ * win/tclWinPipe.c
+ * win/tclWinSock.c
+ * unix/tcl.m4: Add dynamic loading support to CYGWIN
+ * unix/configure (regenerated)
+ * unix/Makefile.in
2009-12-19 Miguel Sofer <msofer@users.sf.net>
- * generic/tclBasic.c: Fix for bad cmd resolution by coroutines
- * tests/coroutine.test: [Bug #2917627]. Thanks to schelte for
- finding it.
+ * generic/tclBasic.c: [Bug 2917627]: Fix for bad cmd resolution by
+ * tests/coroutine.test: coroutines. Thanks to schelte for finding it.
2009-12-16 Donal K. Fellows <dkf@users.sf.net>