summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix ChangeLof entryMiguel Sofer2008-10-071-0/+1
|
* * generic/tclBasic.c: Move [tailcall], [coroutine] andMiguel Sofer2008-10-076-115/+74
| | | | | | * generic/tclCmdIL.c: [yield] out of ::tcl::unsupported * tests/info.test: and into global scope: TIPs #327 * tests/unsupported.test: and #328
* Corrected order of subcommands in a section to be alphabeticdkf2008-10-071-8/+8
|
* Documented channel transformations.dkf2008-10-074-10/+201
|
* fix warnings from 2008-10-05 constificationdas2008-10-071-6/+8
|
* Fixed up some erroneous tests that are failing on Vista/Server2008 systemspatthoyts2008-10-062-6/+13
|
* fixed constness of last commit for msvcpatthoyts2008-10-062-2/+6
|
* Fix for [Bug 1934200]Joe Mistachkin2008-10-062-1/+7
|
* missed commit of lset.n in TIP #331 changes.Kevin B Kenny2008-10-062-6/+12
|
* * doc/FileSystem.3: CONSTified Tcl_FSFileAttrStringsProcnijtmans2008-10-0510-37/+50
| | | | | | | | | | | | | | | * 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-053-17/+99
| | | | | | | * 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-053-5/+51
| | | | | | | * 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-057-42/+54
| | | | | | | | | | | * 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-052-5/+14
|
* More result hygiene.dkf2008-10-043-10/+17
|
* * generic/tclLoad.c: Make sure that any library whichnijtmans2008-10-042-3/+36
| | | | | doesn't have an unloadproc is only really unloaded when no library code is executed yet. [Bug 2059262]
* * doc/ChnlStack.3: CONSTified the typePtr argumentnijtmans2008-10-047-28/+29
| | | | | | | | | | | * doc/CrtChannel.3: of Tcl_CreateChannel and Tcl_StackChannel * generic/tcl.decls and the return value of Tcl_GetChannelType * generic/tcl.h * generic/tclIO.h * generic/tclIO.c * ChangeLog * generic/tclDecls.h: regenerated This change complies with TIP #27.
* Clean up result handling, factor out some duplicated code, share objects.dkf2008-10-043-188/+152
|
* * doc/Hash.3: CONSTified the typePtr argumentnijtmans2008-10-046-16/+16
| | | | | | | | | * 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-046-11/+21
| | | | | | | | | * generic/tcl.decls: of Tcl_RegisterConfig. * generic/tclConfig.c * generic/tclPkgConfig.c * ChangeLog * generic/tclDecls.h: regenerated This change complies with TIP #27.
* * doc/GetIndex.3: CONSTified the tablePtr argumentnijtmans2008-10-045-10/+20
| | | | | | | | * generic/tcl.decls: of Tcl_GetIndexFromObj. * generic/tclIndexObj.c * ChangeLog * generic/tclDecls.h: regenerated This change complies with TIP #27.
* * tests/stack.test:Miguel Sofer2008-10-033-111/+13
| | | | | * unix/tclUnixTest.c: removed test command teststacklimit and the corresponding constraint: it is not needed with NRE
* minor correctionsdkf2008-10-031-12/+21
|
* Tidying up formattingdkf2008-10-031-73/+73
|
* regen againdkf2008-10-032-8/+13
|
* typofixdkf2008-10-031-4/+4
|
* typodkf2008-10-031-2/+2
|
* Implemented TIP#195 - tcl::prefix command. [Patch 1040206]dkf2008-10-036-12/+710
|
* Regendkf2008-10-022-2/+10
|
* Reduce the number of (pointless) type-casts.dkf2008-10-021-38/+39
|
* Implement TIP #265. [FRQ 1446696]dkf2008-10-025-12/+665
|
* * tests/info.test (info-23.3): See [SF Bug 2017632]. Updatedandreas_kupries2008-10-022-3/+7
| | | | | output of the test to handle the NRE-enabled eval and the proper propagation of location information through it.
* * doc/info.n: Fixed [SF Bug 2134049]. Rephrased the documentationandreas_kupries2008-10-022-5/+9
| | | | of 'info frame' for positive numbers as level argument.
* * tests/info.test (info-22.8): Fixed [SF Bug 2129828]. Madeandreas_kupries2008-10-022-2/+8
| | | | | pattern for file containing tcltest less specific to accept both .tcl and .tm variants of the file during matching.
* TIP #330 IMPLEMENTATIONdgp2008-10-027-22/+44
| | | | | | | | | | * generic/tcl.h: Remove the "result" and "freeProc" fields * generic/tclBasic.c: from the default public declaration of the * generic/tclResult.c: Tcl_Interp struct. Code should no longer * generic/tclStubLib.c: be accessing these fields. Access can be * generic/tclTest.c: restored by defining USE_INTERP_RESULT, but * generic/tclUtil.c: that should only be a temporary migration aid. *** POTENTIAL INCOMPATIBILITY ***
* forgot one missing unmatched font changeJoe Mistachkin2008-10-021-2/+2
|
* Fixes for [Bug 1934272, 2072891]Joe Mistachkin2008-10-028-15/+31
|
* remove outdated commentdgp2008-09-301-14/+1
|
* TIP #323 IMPLEMENTATION (partial)dgp2008-09-294-13/+13
| | | | | | * doc/glob.n: Revise [glob] to accept zero patterns. * generic/tclFileName.c: * tests fileName.test:
* TIP #323 IMPLEMENTATION (partial)dgp2008-09-294-8/+22
| | | | | | * doc/linsert.n: Revise [linsert] to accept zero elements. * generic/tclCmdIL.c: * tests/linsert.test:
* TIP #326 IMPLEMENTATIONdkf2008-09-294-22/+196
|
* TIP #313 IMPLEMENTATIONdkf2008-09-294-25/+108
|
* Implement TIP 318.dkf2008-09-293-8/+34
|
* regendkf2008-09-282-33/+52
|
* Implement TIP 314. [Patch 1901783]dkf2008-09-287-53/+569
|
* Added test for [Bug 2130726].dkf2008-09-281-1/+4
|
* * generic/tclBasic.c: Fix the numLevels computations onMiguel Sofer2008-09-284-6/+111
| | | | | * generic/tclInt.h: coroutine yield/resume * tests/unsupported.test:
* Reduce the magic number countdkf2008-09-271-4/+6
|
* Fix [Bug 2130726].dkf2008-09-272-1/+28
|
* Stylistic improvements (consistent function separation standards, etc.) anddkf2008-09-271-324/+320
| | | | some reduction in nesting in functions.