summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* CONSTify TclDTraceInfonijtmans2008-10-281-0/+8
| | | | Eliminate some -Wstrings-write warnings
* * generic/tclEncoding.c: Use "iso8859-1" and not "identity"dgp2008-10-271-0/+13
| | | | | | | | | | | | as the default and original [encoding system] value. Since "iso8859-1" is built in to the C source code for Tcl now, there's no availability issue, and it has the good feature of "identity" that we must have ("bytes in" == "bytes out") without the bad feature of "identity" ("broken as designed") that makes us want to abandon it. [RFE 2008609] *** POTENTIAL INCOMPATIBILITY for older releases of Tclkit and any other code expecting a particular value for Tcl's default system encoding ***
* Fixed a failure to read SHOUTcast streams with the new 2.7patthoyts2008-10-231-0/+6
| | | | | package. Introduced a new intial state as the first response may not be HTTP*.
* * generic/tclCmdAH.c (ForNextCallback): handle TCL_CONTINUE inMiguel Sofer2008-10-231-0/+5
| | | | the for body [Bug 2186888].
* Letting CONST die a slow and graceful death, since NO_CONST wasnijtmans2008-10-221-0/+20
| | | | broken since 8.4 and no-one complained about it.
* * generic/tclProc.c: Reset -level and -code values to defaultsdgp2008-10-191-0/+5
| | | | after they are used. [Bug 2152286].
* Check syntax of [info coroutine] args, i.e. there are none.dkf2008-10-191-0/+3
|
* Document [info coroutine].dkf2008-10-191-0/+2
|
* Improve documentation of [tcl::prefix].dkf2008-10-191-0/+5
|
* CONST -> constnijtmans2008-10-171-0/+6
|
* * generic/tclIORTrans.c (DeleteReflectedTransformMap): Removedandreas_kupries2008-10-171-0/+5
| | | | debug output in C++ comment.
* * generic/tclCompile.h: Declare the internal tclInstructionTabledgp2008-10-171-0/+9
| | | | | | | | * generic/tclExecute.c: to simply be "const", not CONST86. * generic/tclCmdAH.c: whitespace. * generic/tclCmdIL.c: Uninitialized variable warning. * generic/tclTest.c: const correctness warning.
* Improve clarity of formatting.dkf2008-10-171-3/+9
|
* Add "const" to many internalnijtmans2008-10-161-0/+36
| | | | | const tables. No functional or API change.
* * library/init.tcl: Revised [unknown] so that it carefullydgp2008-10-161-0/+7
| | | | | | preserves the state of the ::errorInfo and ::errorCode variables at the start of auto-loading and restores that state before the autoloaded command is evaluated. [Bug 2140628]
* Add "const" to many internalnijtmans2008-10-151-0/+16
| | | | | | | | const tables, so those will be put by the C-compiler in the TEXT segment in stead of the DATA segment. This makes those table sharable in shared libraries.
* * win/tclWinChan.c: Fix minor compiler warnings whennijtmans2008-10-141-0/+5
| | | | | | | * win/tclWinDde.c: compiling wit -Wwrite-strings * win/tclWinInit.c: * win/tclWinReg.c: * win/tclWinSerial.c:
* * generic/tclCmdAH.c: Fix minor compiler warnings when compilingnijtmans2008-10-141-0/+9
| | | | | | | | * generic/tclCmdMZ.c: with -Wwrite-strings * generic/tclIndexObj.c: * generic/tclProc.c: * generic/tclStubLib.c: * generic/tclUtil.c:
* Fix a bit of formatting.dkf2008-10-141-0/+4
|
* * README: Bump version number to 8.6a4dgp2008-10-141-0/+11
| | | | | | | | | | | | * generic/tcl.h: * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* * generic/tclExecute.c: Fix compile warnings when --enable-symbols=all.dgp2008-10-141-0/+7
| | | | | * generic/tclCmdIL.c: Fix write to unallocated memory whenever [lrepeat] returns an empty list.
* Made documentation *even more* clear...dkf2008-10-141-46/+51
|
* We need to initialize the thread id variable to 0 as on 64 bit windowspatthoyts2008-10-131-0/+6
| | | | | | this is a pointer sized field while windows only fills it with a 32 bit value. The result is an inability to join the threads as the ids cannot be matched.
* set array of Tcl_Obj's to the right size.patthoyts2008-10-131-0/+4
|
* Handle error case [info class destructor].dkf2008-10-131-0/+2
|
* Added magic for Objective C. [Bug 2163447]dkf2008-10-131-0/+5
|
* * generic/tclCompile.c: fix bug in srcDelta encoding withinMiguel Sofer2008-10-121-0/+7
| | | | | | ByteCodes. The bug can only be triggered under conditions that cannot happen in Tcl, but were met during development of L. Thanks go to Robert Netzer for diagnose and fix.
* *** 8.6a3 TAGGED FOR RELEASE ***dgp2008-10-101-6/+6
| | | | * changes: Updates for 8.6a3 release.
* Fix [Bug 2155658]dkf2008-10-101-45/+52
|
* * unix/tclUnixChan.c: fix minor compiler warningnijtmans2008-10-081-0/+6
| | | | | * unix/tcl.m4: fix for bug [2073255] * unix/configure: regenerated
* * generic/tclBasic (TclInfoCoroutineCmd):Miguel Sofer2008-10-081-0/+7
| | | | | | * tests/unsupported.test: arrange for [info coroutine] to return {} when a coroutine is running but the resume command has been deleted [Bug 2153080]
* * generic/tclTrace.c: Corrected handling of errors returned bydgp2008-10-081-0/+10
| | | | | | | | | variable traces so that the errorInfo value contains the original error message. [Bug 2151707] * generic/tclVar.c: Revised implementation of TclObjVarErrMsg so that error message construction does not disturb an existing iPtr->errorInfo that may be in progress.
* Added better docs of [binary encode] and [binary decode]dkf2008-10-071-0/+5
|
* fix ChangeLof entryMiguel Sofer2008-10-071-0/+1
|
* * generic/tclBasic.c: Move [tailcall], [coroutine] andMiguel Sofer2008-10-071-0/+7
| | | | | | * generic/tclCmdIL.c: [yield] out of ::tcl::unsupported * tests/info.test: and into global scope: TIPs #327 * tests/unsupported.test: and #328
* Documented channel transformations.dkf2008-10-071-0/+5
|
* Fixed up some erroneous tests that are failing on Vista/Server2008 systemspatthoyts2008-10-061-0/+1
|
* fixed constness of last commit for msvcpatthoyts2008-10-061-0/+4
|
* Fix for [Bug 1934200]Joe Mistachkin2008-10-061-0/+5
|
* missed commit of lset.n in TIP #331 changes.Kevin B Kenny2008-10-061-0/+1
|
* * doc/FileSystem.3: CONSTified Tcl_FSFileAttrStringsProcnijtmans2008-10-051-6/+17
| | | | | | | | | | | | | | | * generic/tclFCmd.c: and tclpFileAttrStrings. This allows * generic/tclIOUtil.c: FileSystems to report their attributes * generic/tclTest.c: as const strings, without worrying that * unix/tclUnixFCmd.c: Tcl modifies them (which Tcl should not * win/tclWinFCmd.c: do anyway, but the API didn't indicate that) * generic/tcl.decls * generic/tclDecls.h: regenerated * generic/tcl.h: make sure that if CONST84 is defined as empty, CONST86 should be defined as empty as well (unless overridden). This change complies with TIP #27 *** POTENTIAL INCOMPATIBILITY ***
* TIP #331 IMPLEMENTATIONKevin B Kenny2008-10-051-0/+7
| | | | | | | * generic/tclListObj.c (TclLsetFlat): * tests/lset.test: Modified the [lset] command so that it allows for an index of 'end+1', which has the effect of appending an element to the list.
* * libtommath/bn_mp_sqrt.c (bn_mp_sqrt): Handle the case whereKevin B Kenny2008-10-051-0/+8
| | | | | | | * tests/expr.test (expr-47.13): a number's square root is between n<<DIGIT_BIT and n<<DIGIT_BIT+1. [Bug 2143288] Thanks to Malcolm Boffey (malcolm.boffey@virgin.net) for the patch.
* * generic/tclInt.decls: CONSTified the AuxDataType argumentnijtmans2008-10-051-0/+12
| | | | | | | | | | | * generic/tclCompCmds.c: of TclCreateAuxData and * generic/tclCompile.c TclRegisterAuxDataType and the return * generic/tclCompile.h values of TclGetAuxDataType and * generic/tclExecute.c TclGetInstructionTable * ChangeLog * generic/tclIntDecls.h: regenerated This change complies with TIP #27 (even though it only involves internal function, so this is not even necessary).
* Fix [Bug 2144595]dkf2008-10-051-0/+5
|
* More result hygiene.dkf2008-10-041-3/+8
|
* * generic/tclLoad.c: Make sure that any library whichnijtmans2008-10-041-0/+31
| | | | | doesn't have an unloadproc is only really unloaded when no library code is executed yet. [Bug 2059262]
* Clean up result handling, factor out some duplicated code, share objects.dkf2008-10-041-3/+9
|
* * doc/Hash.3: CONSTified the typePtr argumentnijtmans2008-10-041-4/+4
| | | | | | | | | * generic/tcl.decls: of Tcl_InitCustomHashTable. * generic/tcl.h * generic/tclHash.c * ChangeLog * generic/tclDecls.h: regenerated This change complies with TIP #27.
* * doc/RegConfig.3: CONSTified the configuration argumentnijtmans2008-10-041-0/+10
| | | | | | | | | * generic/tcl.decls: of Tcl_RegisterConfig. * generic/tclConfig.c * generic/tclPkgConfig.c * ChangeLog * generic/tclDecls.h: regenerated This change complies with TIP #27.