summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * library/tzdata/Asia/Hong_Kong:Kevin B Kenny2010-11-011-0/+6
| | | | | * library/tzdata/Pacific/Apia: * library/tzdata/Pacific/Fiji: Olson's tzdata2010o.
* Update for VS10nijtmans2010-10-231-0/+1
|
* [Bug 3085863]: tclUniData 9 years oldnijtmans2010-10-231-0/+9
| | | | Upgrade everything to Unicode 6.0, except non-BMP characters > 0xFFFF
* * generic/tclExecute.c: fix overallocation of exec stack in TEBCMiguel Sofer2010-10-091-0/+5
| | | | (mixing numwords and numbytes)
* * generic/tclExecute.c (EvalStatsCmd): change 'evalstats' tohobbs2010-10-021-0/+10
| | | | | | | | | return data to interp by default, or if given an arg, use that as filename to output to (accepts 'stdout' and 'stderr'). Fix output to print used inst count data. * generic/tclCkalloc.c: change TclDumpMemoryInfo sig to allow * generic/tclInt.decls: objPtr as well as FILE* as output. * generic/tclIntDecls.h:
* * tclWinsock.c: [Bug 3056775]: Fixed race condition between threadandreas_kupries2010-09-241-0/+7
| | | | | | and internal co-thread access of a socket's structure because of the thread not using the socketListLock in TcpAccept(). Added documentation on how the module works to the top.
* * generic/tclCmdAH.c: Fix cases where value returned bydgp2010-09-231-0/+7
| | | | | | * generic/tclEvent.c: Tcl_GetReturnOptions() was leaked. * generic/tclMain.c: Thanks to Jeff Hobbs for discovery of the anti-pattern to seek and destroy.
* * doc/file.n (file readlink): [Bug 3070580]: Typofix.dkf2010-09-181-0/+4
|
* * doc/regsub.n: [Bug 3063568]: Fix for gotcha in example due to Tcl'sdkf2010-09-101-1/+7
| | | | | special handling of backslash-newline. Makes example slightly less pure, but more useful.
* * changes: Update for 8.5.9 release.core_8_5_9dgp2010-09-081-2/+5
|
* * doc/tm.n: Added underscore to the set of characters accepted inandreas_kupries2010-09-081-0/+6
| | | | | module names. This is true for quite some time in the code, this change catches up the documentation.
* * win/tclWin32Dll.c: #ifdef protections to permit builds withdgp2010-09-081-0/+6
| | | | | * win/tclWinChan.c: mingw on amd64 systems. Thanks to "mescalinum" * win/tclWinFCmd.c: for reporting and testing.
* Backport blkcnt_t detection/usage.stwo2010-09-061-0/+7
|
* Tag for RC4 release (again)dgp2010-09-021-2/+2
|
* * doc/glob.n: Fixed documentation ambiguity regarding the handlingandreas_kupries2010-09-021-0/+3
| | | | of -join.
* * library/safe.tcl (::safe::AliasGlob): Fixed another problem, theandreas_kupries2010-09-021-0/+6
| | | | | option -join does not stop option processing in the core builtin, so the emulation must not do that either.
* Tag for RC4 releasedgp2010-09-021-2/+2
|
* * library/safe.tcl (::safe::AliasGlob): Moved the commandandreas_kupries2010-09-021-0/+6
| | | | | extending the actual glob command with a -directory flag to when we actually have a proper untranslated path,
* * changes: Update for 8.5.9 release.dgp2010-09-011-2/+7
|
* * generic/tclExecute.c: [Bug 3057639]. Applied patch by Jeff toandreas_kupries2010-09-011-0/+8
| | | | | | | * generic/tclVar.c: make the behaviour of lappend in bytecompiled * tests/append.test: mode consistent with direct-eval and 'append' * tests/appendComp.test: generally. Added tests (append*-9.*) showing the difference.
* Tag for R2 releasedgp2010-09-011-2/+2
|
* * tools/tcltk-man2html.tcl: Improve handling of cross-links fordkf2010-09-011-0/+3
| | | | options between Ttk manual pages.
* * doc/Tcl.n: Avoid nroff hazards when generating documentation.dkf2010-09-011-0/+4
|
* Tag for RC2 releasedgp2010-09-011-2/+2
|
* * win/tcl.m4: Applied patch by Jeff fixing issues with theandreas_kupries2010-08-311-0/+6
| | | | | manifest handling on Win64. * win/configure: Regenerated.
* Tag for RC1 releasedgp2010-08-301-2/+2
|
* * doc/dict.n: [Bug 3046999]: Corrected cross reference to arraydkf2010-08-291-0/+5
| | | | manpage to refer to (correct) existing subcommand.
* note unix/configure changehobbs2010-08-271-1/+1
|
* * unix/configure, unix/tcl.m4: SHLIB_LD_LIBS='${LIBS}' for OSF1-V*.hobbs2010-08-271-0/+4
| | | | | Add /usr/lib64 to set of auto-search dirs. [Bug 1230554] (SC_PATH_X): Correct syntax error when xincludes not found.
* * win/Makefile.in (VC_MANIFEST_EMBED_DLL VC_MANIFEST_EMBED_EXE):hobbs2010-08-271-0/+8
| | | | | | | * win/configure, win/configure.in, win/tcl.m4: SC_EMBED_MANIFEST macro and --enable-embedded-manifest configure arg added to support manifest embedding where we know the magic. Help prevents DLL hell with MSVC8+.
* * changes: Update for 8.5.9 release.dgp2010-08-241-2/+6
|
* * library/tzdata/Africa/Cairo:Kevin B Kenny2010-08-231-2/+2
| | | | * library/tzdata/Asia/Gaza: Olson's tzdata2010l.
* * library/tzdata/Africa/Cairo:Kevin B Kenny2010-08-231-0/+5
| | | | * library/tzdata/Asia/Gaza: Olson's tzdata2010l.
* * generic/tclTrace.c (TraceExecutionObjCmd, TraceCommandObjCmd)dkf2010-08-191-0/+7
| | | | | | (TraceVariableObjCmd): [Patch 3048354]: Use memcpy() instead of strcpy() to avoid buffer overflow; we have the correct length of data to copy anyway since we've just allocated the target buffer.
* * generic/tclProc.c (ProcWrongNumArgs): [Bug 3045010]: Make thedkf2010-08-151-0/+6
| | | | | handling of passing the wrong number of arguments to [apply] somewhat less verbose when a lambda term is present.
* * generic/tclCmdMZ.c (Tcl_RegexpObjCmd): [Bug 2826551, Patch 2948425]:dkf2010-08-121-20/+25
| | | | Backport of updates to make handling of RE line anchors correct.
* * unix/ldAix: remove ancient (pre-4.2) AIX supporthobbs2010-08-121-0/+9
| | | | | | | | * unix/configure: regen with ac-2.59 * unix/configure.in, unix/tclConfig.sh.in, unix/Makefile.in: * unix/tcl.m4 (AIX): remove the need for ldAIX, replace with -bexpall/-brtl. Remove TCL_EXP_FILE (export file) and other baggage that went with it. Remove pre-4 AIX build support.
* * generic/tclUtil.c (TclByteArrayMatch): patterns may not behobbs2010-08-101-0/+5
| | | | null-terminated, so account for that.
* * changes: Update for 8.5.9 release.uid375512010-08-051-2/+6
|
* * unix/tclUnixFCmd.c: adjust license header as perhobbs2010-08-041-0/+3
| | | | ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
* fix DFARs note for number-adjusted rights clausehobbs2010-08-041-0/+2
|
* * win/tclWin32Dll.c (asciiProcs, unicodeProcs):hobbs2010-08-041-0/+5
| | | | | | * win/tclWinLoad.c (TclpDlopen): 'load' use LoadLibraryEx with * win/tclWinInt.h (TclWinProcs): LOAD_WITH_ALTERED_SEARCH_PATH to prefer dependent DLLs in same dir as loaded DLL.
* * win/Makefile.in (%.${OBJEXT}): better implicit rules supporthobbs2010-08-041-0/+4
|
* * generic/tcl.h: Bump to 8.5.9 for release.dgp2010-08-041-0/+17
| | | | | | | | | | | | | | * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * README: * unix/configure: autoconf-2.59 * win/configure: * changes: Update for 8.5.9 release.
* * generic/tclIORChan.c: [Bug 3034840]: Fixed reference countingandreas_kupries2010-08-041-2/+5
| | | | * tests/ioCmd.test: in InvokeTclMethod and callers.
* * tests/var.test (var-19.1): [Bug 3037525]: Added testandreas_kupries2010-08-031-0/+5
| | | | demonstrating the local hashtable deletion crash and fix.
* * tests/info.test (info-39.1, test_info_frame): Changed absoluteandreas_kupries2010-08-031-0/+8
| | | | | | | to relative frame adressing to handle difference between testing with -singleproc 1 vs. the default -singleproc 0. Plus comment fix. The test and issue are not relevant to the trunk, forward porting is not required.
* * changes: Update for 8.5.9 release.dgp2010-08-031-5/+9
|
* * library/tzdata/America/Bahia_Banderas:Kevin B Kenny2010-08-021-0/+11
| | | | | | | | | | * library/tzdata/Pacific/Chuuk: * library/tzdata/Pacific/Pohnpei: * library/tzdata/Africa/Cairo: * library/tzdata/Europe/Helsinki: * library/tzdata/Pacific/Ponape: * library/tzdata/Pacific/Truk: * library/tzdata/Pacific/Yap: Olson's tzdata2010k.
* * generic/tclVar.c: fix for crash [Bug 3037525]: lose fickleMiguel Sofer2010-07-311-0/+5
| | | | optimisation in TclDeleteVars (used for runtime-created locals)