summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Fix [Bug 1638414] and make bytecode of expansion betterdkf2007-01-181-0/+4
|
* Detect [Bug 1638414]dkf2007-01-181-0/+4
|
* Added macros to make usage of ChannelBuffers clearer.dkf2007-01-171-0/+5
|
* * win/tcl.m4(CFLAGS_WARNING): Remove "-Wconversion".jenglish2007-01-111-0/+6
| | | | | This was removed from unix/tcl.m4 2004-07-16 but not from here. * win/configure: Regenerated.
* Fixes to work better on Win98. Read version numbers from package index filepatthoyts2007-01-111-0/+6
| | | | to avoid keeping numbers in the makefile.
* Arrange for RE engine workspace to be held in TSD. This is safe, lessdkf2007-01-101-4/+12
| | | | C-stack-hungry than before, and faster than just using heap allocation.
* Fix [lindex] argument ordering. [bug 1631364]dkf2007-01-091-0/+6
|
* Regenerated tclDate.cKevin B Kenny2007-01-031-0/+5
|
* Whitespace/line-width policedkf2006-12-281-13/+9
|
* * generic/tclIO.c (Tcl_GetsObj):mdejong2006-12-271-0/+6
| | | | | Avoid checking for for the LF in a possible CRLF sequence when EOF has already been found.
* * generic/tclEncoding.c (EscapeFromUtfProc):mdejong2006-12-271-0/+12
| | | | | | | | | | | Clear the TCL_ENCODING_END flag when end bytes are written. This fix keep this method from writing escape bytes for an encoding like iso2022-jp multiple times when the escape byte overlap with the end of the IO buffer. * tests/io.test: Add test for escape byte overlap issue.
* Fix [Bug 1618838]dkf2006-12-191-0/+5
|
* * unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.das2006-12-191-0/+2
|
* * unix/tcl.m4 (Darwin): --enable-64bit: verify linking with 64bit -archdas2006-12-191-0/+6
| | | | | flag succeeds before enabling 64bit build. * unix/configure: autoconf-2.59
* * tests/macOSXLoad.test (new file): add testing of .bundle loading anddas2006-12-171-0/+20
| | | | | | | | | | | * tests/load.test: unloading on Darwin (in addition to * tests/unload.test: existing tests of .dylib loading). * macosx/Tcl.xcodeproj/project.pbxproj: add building of dltest binaries so that testsuite run from Xcode can use them; fix testsuite run script. * unix/configure.in: add support for building dltest binaries as * unix/dltest/Makefile.in: .bundle (in addition to .dylib) on Darwin. * unix/Makefile.in: add stub lib dependency to dltest target. * unix/configure: autoconf-2.59
* Fix example. [Bug 1615277]dkf2006-12-141-13/+17
|
* * generic/tclCompExpr.c: Now that the new internal structsdgp2006-12-121-0/+8
| | | | | | | | | are in use to support operator commands, might as well make them the default for [expr] as well and avoid passing every parsed expression through the inefficient Tcl_Token array format. This addresses most issues in [RFE 1517602] Assuming no performance disasters result from this, much dead code supporting the other implementation might now be removed.
* * generic/tclBasic.c: Final step routing all direct evaluation formsdgp2006-12-121-0/+7
| | | | | | * generic/tclCompExpr.c: of the operator commands through TEBC, * generic/tclCompile.h: dropping all the routines in tclMathOp.c. * generic/tclMathOp.c: Still needs Engineering Manual attention.
* * generic/tclBasic.c: Another step with all sorting operator commandsdgp2006-12-111-0/+6
| | | | | * generic/tclCompExpr.c: now routing through TEBC via * generic/tclCompile.h: TclSortingOpCmd().
* * generic/tclBasic.c: Another step down the path of re-usingdgp2006-12-081-0/+7
| | | | | | | | * generic/tclCompExpr.c: TclExecuteByteCode to implement the TIP 174 * generic/tclCompile.h: commands instead of using a mass of code * generic/tclMathOp.c: duplication. Now all operator commands that * tests/mathop.test: demand exactly one operation are implemented via TclSingleOpCmd and a call to TEBC.
* * generic/tclCompExpr.c: Revised implementation of TclInvertOpCmddgp2006-12-081-0/+9
| | | | | | | | | | * generic/tclMathOp.c: to perform a bytecode compile / execute sequence. This demonstrates a path toward avoiding mountains of code duplication in tclMathOp.c and tclExecute.c. * generic/tclCompile.h: Change TclExecuteByteCode() from static to * generic/tclExecute.c: MODULE_SCOPE so all files including tclCompile.h may call it.
* * generic/tclMathOp.c: More revisions to make tests pass.dgp2006-12-081-0/+5
| | | | * tests/mathop.test:
* Fix [Bug 1571056] and silence a GCC warningdkf2006-12-081-0/+4
|
* Minor formattingdkf2006-12-081-3/+3
|
* More tests for bitopsdkf2006-12-081-0/+4
|
* typodas2006-12-081-2/+2
|
* * library/tcltest/tcltest.tcl: use [info frame] for "-verbose line".das2006-12-081-2/+6
|
* * generic/tclCompCmds.c: Additional commits correct mostdgp2006-12-071-0/+4
| | | | | * generic/tclExecute.c: failing tests illustrating bugs uncovered * generic/tclMathOp.c: in [Path 1578137].
* * generic/tclBasic.c: Biggest source of TIP 174 failures was thatdgp2006-12-071-1/+5
| | | | | the commands were not [namespace export]ed from the ::tcl::mathop namespace. More bits from [Patch 1578137] correct that.
* * tests/mathop.test: Commmitted several new tests from Peter Spjuthdgp2006-12-071-0/+6
| | | | | found in [Patch 157837]. Many failures now demonstrate issues to fix in the TIP 174 implementation.
* Remove erroneous linedkf2006-12-071-3/+2
|
* More #174 bits and piecesdkf2006-12-071-3/+12
|
* Fixed line endings broken by a previous checking that caused test failures ↵patthoyts2006-12-071-0/+4
| | | | on windows.
* * generic/tclCompCmds.c: Revised and consolidated into utilitydgp2006-12-061-1/+7
| | | | | * tests/mathop.c: routines some of routines that compile the new TIP 174 commands. This corrects some known bugs. More to come.
* Improved error reporting in test expr-47.12Kevin B Kenny2006-12-061-0/+5
|
* Whitespace/style copdkf2006-12-061-9/+10
|
* Documentation for platform package.andreas_kupries2006-12-051-0/+3
|
* * generic/tclBasic.c: TIP #291. Define tcl_platform element forandreas_kupries2006-12-051-0/+17
| | | | | | | | | | | | | | | | * 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-051-0/+13
| | | | | | | | | | | | * 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.
* Implement TIP#267dkf2006-12-041-8/+14
|
* * generic/tclCompExpr.c: Added implementation for thedgp2006-12-041-0/+8
| | | | | | | 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-031-0/+11
| | | | | | | | | | 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-021-17/+20
|
* TIP#299 IMPLEMENTATIONKevin B Kenny2006-12-011-0/+8
|
* Fixed results of bollixed commit of libtommath 0.39Kevin B Kenny2006-12-011-0/+7
|
* * tests/chan.test: Correct timing sensitivity in new testdgp2006-12-011-0/+3
| | | | [Bug 1606860]
* TIP#287 IMPLEMENTATIONdgp2006-12-011-0/+10
| | | | | | | | | | * 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-011-0/+13
| | | | | | | | | | | * 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:
* typodas2006-12-011-1/+1
|
* Olson's tzdata2006pKevin B Kenny2006-11-301-0/+7
|