summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* TIP#287 IMPLEMENTATIONdgp2006-12-019-11/+220
| | | | | | | | | | * doc/chan.n: New subcommand [chan pending]. * generic/tclBasic.c: Thanks to Michael Cleverly for proposal * generic/tclInt.h: and implementation. * generic/tclIOCmd.c: * library/init.tcl: * tests/chan.test: * tests/ioCmd.test:
* TIP#298 IMPLEMENTATIONdgp2006-12-017-178/+63
| | | | | | | | | | | * generic/tcl.decls: Tcl_GetBignumAndClearObj -> Tcl_TakeBignumFromObj. * generic/tclObj.c: * generic/tclDecls.h: make genstubs * generic/tclStubInit.c: * generic/tclExecute.c: Update callers. * generic/tclMathOp.c:
* declare new BZ_DIV_CUTOFF global as MODULE_SCOPEdas2006-12-011-3/+4
|
* typodas2006-12-011-1/+1
|
* fix warningsdas2006-12-012-6/+6
|
* fix typo: 0,0 -> 0.0das2006-12-011-3/+3
|
* fix gcc warning: "suggest parentheses around comparison in operand of &"das2006-12-011-3/+3
|
* Upgrade to tommath 0.39 plus patches from TomKevin B Kenny2006-12-0110-22/+190
|
* Import of libtommath 0.39+Kevin B Kenny2006-12-01128-5183/+970
|
* fixed bug in floating point initial approximation that caused convergence ↵Kevin B Kenny2006-11-301-4/+10
| | | | failure
* Olson's tzdata2006pKevin B Kenny2006-11-3012-704/+723
|
* * generic/tclBasic.c (Tcl_AppendObjToErrorInfo): Addeddgp2006-11-292-1/+8
| | | | | Tcl_DecrRefCount() on the objPtr argument to plug memory leaks. This makes the routine a consumer, which makes it easiest to use.
* Correct typos that produced duplicate test namesdgp2006-11-291-5/+5
|
* * generic/tclBasic.c: TIP #280 implementation.andreas_kupries2006-11-2823-205/+2928
| | | | | | | | | | | | | | | | | | | | | * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompCmds.c: * generic/tclCompExpr.c: * generic/tclCompile.c: * generic/tclCompile.h: * generic/tclExecute.c: * generic/tclIOUtil.c: * generic/tclInt.h: * generic/tclInterp.c: * generic/tclNamesp.c: * generic/tclObj.c: * generic/tclProc.c: * tests/compile.test: * tests/info.test: * tests/platform.test: * tests/safe.test:
* Add missing cast that makes the fix effective.dgp2006-11-281-2/+2
|
* * unix/tclUnixChan.c (TclUnixWaitForFile):Kevin B Kenny2006-11-273-3/+221
| | | | | | | * tests/event.test (event-14.*): Corrected a bug where TclUnixWaitForFile would present select() with the wrong mask on an LP64 machine if a fd number exceeds 32. Thanks to Jean-Luc Fontaine for reporting and diagnosing [Bug 1602208].
* * generic/tclExecute.c (TclIncrObj): Correct failure to detectdgp2006-11-272-2/+7
| | | | floating-point increment values. Thanks to William Coleda [Bug 1602991]
* More bits and pieces of the TIP#174 implementationdkf2006-11-263-2/+401
|
* * tcl.m4 (Linux): --enable-64bit support. [Patch 1597389], [Bug 1230558]das2006-11-263-2/+82
| | | | * configure: autoconf-2.59
* add tclMathOp.cdas2006-11-261-0/+4
|
* Finished coding part of TIP#174. Still have tests and docs to do.dkf2006-11-257-1638/+3127
|
* Added some more implementationsdkf2006-11-241-3/+274
|
* Supply missing #ifdefdgp2006-11-241-1/+3
|
* Added Mod implementationdkf2006-11-231-2/+209
|
* Added implementations of the interpreted comparison operatorsdkf2006-11-231-15/+561
|
* Added some interpreted operator implementationsdkf2006-11-231-7/+61
|
* Silence complaints caused by [namespace import] returning current importsdkf2006-11-232-10/+6
|
* *Partial* implementation of TIP#174. Still needs non-compiled versions of mostdkf2006-11-234-4/+1135
| | | | operators, plus docs and tests.
* Date fixdkf2006-11-231-1/+1
|
* removed tools/genWinImage.tcl and win/README.binarydas2006-11-231-4/+0
|
* whitespacedas2006-11-231-5/+5
|
* [string is list] tests: fixed mixed up test name, added test of unicode handlingdkf2006-11-221-2/+6
|
* TIP#269 implementationdkf2006-11-224-14/+128
|
* * generic/tcl.h: Remove mention of win/README.binary in comment.dgp2006-11-222-2/+2
|
* * tools/genWinImage.tcl (removed): Removed two files used indgp2006-11-223-300/+4
| | | | | * win/README.binary (removed): production of binary distributions for Windows, a task we no longer perform. [Bug 1476980].
* * generic/tcl.h: Moved TCL_REG_BOSONLY #define from tcl.h todgp2006-11-223-12/+21
| | | | | | * generic/tclInt.h: tclInt.h. Only know user is Expect, which already #include's tclInt.h. No need to continue greater exposure. [Bug 926500]
* Make the guts of [chan] more robust.dkf2006-11-203-30/+64
|
* Added a missing bold highlightdkf2006-11-201-2/+2
|
* * generic/tclExecute.c (INST_EXPON): Corrected crash ondgp2006-11-172-1/+11
| | | | [expr 2**(1<<63)]. Was operating on cleared bignum Tcl_Obj.
* Added more examplesdkf2006-11-163-28/+91
|
* TIP#270 IMPLEMENTATIONdgp2006-11-1526-118/+233
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tcl.decls: New public routines Tcl_ObjPrintf, * generic/tclStringObj.c: Tcl_AppendObjToErrorInfo, Tcl_Format, * generic/tclInt.h: Tcl_AppendLimitedToObj, Tcl_AppendFormatToObj and Tcl_AppendPrintfToObj. Former internal versions removed. * generic/tclDecls.h: make genstubs * generic/tclStubInit.c: * generic/tclBasic.c: Updated callers. * generic/tclCkalloc.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclCompExpr.c: * generic/tclCompile.c: * generic/tclDictObj.c: * generic/tclExecute.c: * generic/tclIORChan.c: * generic/tclIOUtil.c: * generic/tclMain.c: * generic/tclNamesp.c: * generic/tclObj.c: * generic/tclPkg.c: * generic/tclProc.c: * generic/tclStrToD.c: * generic/tclTimer.c: * generic/tclUtil.c: * unix/tclUnixFCmd.c:
* * tools/genStubs.tcl: Updated script to no longer produce thedgp2006-11-158-2600/+2411
| | | | | | | | | | | | | | | _ANSI_ARGS_ wrapper in generated declarations. Also revised to accept variadic prototypes with more than one fixed argument. (This is possible since TCL_VARARGS and its limitations are no longer in use). * generic/tcl.h: Some reordering so that macro definitions do not interfere with the now _ANSI_ARGS_-less stub declarations. * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclIntPlatDecls.h: * generic/tclPlatDecls.h: * generic/tclTomMathDecls.h:
* Convert \fP to \fR for easier manual page scrapingdkf2006-11-1517-217/+225
|
* TIP#261 IMPLEMENTATIONdgp2006-11-142-2/+30
| | | | | * generic/tclNamesp.c: [namespace import] with 0 arguments introspects the list of imported commands.
* Silence a compiler warining about presenting a volatile pointer to 'memset'Kevin B Kenny2006-11-132-3/+10
|
* * generic/tclIO.c: When [gets] on a binary channel needs to usedgp2006-11-132-12/+49
| | | | | | | the "iso8859-1" encoding, save a copy of that encoding per-thread to avoid repeated freeing and re-loading of it from the file system. This replaces the cached copy of this encoding that the platform initialization code used to keep in pre-8.5 releases.
* * generic/tclCompExpr.c: fix gcc warnings about 'cast to/fromdas2006-11-1321-89/+460
| | | | | | | | | | | | | | | | | | | | | | | * generic/tclEncoding.c: pointer from/to integer of different * generic/tclEvent.c: size' on 64-bit platforms by casting to * generic/tclExecute.c: intermediate types intptr_t/uintptr_t * generic/tclHash.c: via new PTR2INT(), INT2PTR(), * generic/tclIO.c: PTR2UINT() and UINT2PTR() macros. * generic/tclInt.h: [Patch 1592791] * generic/tclProc.c: * generic/tclTest.c: * generic/tclThreadStorage.c: * generic/tclTimer.c: * generic/tclUtil.c: * unix/configure.in: * unix/tclUnixChan.c: * unix/tclUnixPipe.c: * unix/tclUnixPort.h: * unix/tclUnixTest.c: * unix/tclUnixThrd.c: * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* Regendkf2006-11-122-2/+30
|
* Transfer TclPtrMakeUpvar and TclObjLookupVar to the internal stubs table.dkf2006-11-123-11/+18
|
* suppress linker arch warnings when building universaldas2006-11-101-1/+4
|