summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclBasic.c: TIP #291. Define tcl_platform element forandreas_kupries2006-12-0512-10/+551
| | | | | | | | | | | | | | | | * doc/tclvars.n: pointerSize. * win/Makefile.in: Added installation instructions for the platform * win/makefile.vc: package. Added the platform package. * win/makefile.bc: * unix/Makefile.in: * tests/platform.test: * tests/safe.test: * library/platform/platform.tcl: * library/platform/shell.tcl: * library/platform/pkgIndex.tcl:
* * generic/tclPkg.c: When no requirements are supplied to adgp2006-12-053-4/+19
| | | | | | | | | | | | * tests/pkg.test: [package require $pkg] and [package unknown] is invoked to find a satisfying package, pass the requirement argument "0-" (which means all versions are acceptable). This permits a registered [package unknown] command to call [package vsatisfies $testVersion {*}$args] without any special handling of the empty $args case. This fixes/avoids a bug in [::tcl::tm::UnknownHandler] that was causing old TM versions to be provided in preference to newer TM versions. Thanks to Julian Noble for discovering the issue.
* Fix leaking-stderr test breakagedkf2006-12-041-8/+25
|
* Implement TIP#267dkf2006-12-044-707/+739
|
* * generic/tclCompExpr.c: Added implementation for thedgp2006-12-042-24/+268
| | | | | | | CompileExprTree() routine that can produce expression bytecode directly from internal structures with no need to pass through the Tcl_Token array representation. Still disabled by default. #undef USE_EXPR_TOKENS to try it out.
* * generic/tclCompExpr.c: Added expr parsing routines thatdgp2006-12-032-6/+1100
| | | | | | | | | | produce a different set of internal structures representing the parsed expression, as well as routines that go on to convert those structures into the traditional Tcl_Token array format. Use of these routines is currently disabled. #undef PARSE_DIRECT_EXPR_TOKENS to enable them. These routines will only become really useful when more routines that compile directly from the new internal structures are completed.
* Bug 1606454 fixeddkf2006-12-022-492/+495
|
* fix warningdas2006-12-021-3/+4
|
* removed BZ_DIV_CUTOFF declaration now that it's gone from libtommathdas2006-12-021-4/+3
|
* TIP#299 IMPLEMENTATIONKevin B Kenny2006-12-015-10/+235
|
* Fixed results of bollixed commit of libtommath 0.39Kevin B Kenny2006-12-015-167/+16
|
* * tests/chan.test: Correct timing sensitivity in new testdgp2006-12-012-3/+7
| | | | [Bug 1606860]
* 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
|