Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * tests/nre.test: add missing constraints; enable test of foreach | Miguel Sofer | 2008-09-10 | 5 | -8/+68 |
| | | | | | | | | | recursion. * generic/tclBasic.c: * generic/tclCompile.h: * generic/tclExecute.c (INST_EVAL_STK): fix for [Bug 2102930], wrong numLevels when evaling a canonical list. | ||||
* | Fix efficiency bug detected by Kieran Elby. | dkf | 2008-09-10 | 2 | -2/+18 |
| | |||||
* | Simplify test bodies using tcltest2 | dkf | 2008-09-08 | 4 | -522/+529 |
| | |||||
* | * generic/tclCompile.c (TclCompileTokens): | Miguel Sofer | 2008-09-08 | 3 | -21/+27 |
| | | | | | | | * generic/tclExecute.c (CompileExprObj): fix a perf bug (found by Alex Ferrieux) where some variables in the LVT where not being accessed by index. Fix missing localCache management in compiled expressions found while analyzing the bug. | ||||
* | * doc/namespace.n: fix [Bug 2098441] | Miguel Sofer | 2008-09-07 | 2 | -2/+6 |
| | |||||
* | * generic/tclTrace.test (TraceVarProc): | Miguel Sofer | 2008-09-05 | 3 | -3/+45 |
| | | | | | * generic/unsupported.test: insure that unset traces are run even when the coroutine is unwinding [Bug 2093947] | ||||
* | * generic/tclExecute.c (CACHE_STACK_INFO): | Miguel Sofer | 2008-09-04 | 3 | -3/+51 |
| | | | | | * tests/unsupported.test: restore the execEnv's bottomPtr, fix for [Bug 2093188]. | ||||
* | * generic/tcl.h: Stripped "callers" of the _ANSI_ARGS_ macro | dgp | 2008-09-03 | 5 | -204/+176 |
| | | | | | | * compat/dirent2.h: to support a TCL_NO_DEPRECATED build. * compat/dlfcn.h: * unix/tclUnixPort.h: | ||||
* | unbreak the build with TCL_NO_DEPRECATED defined | das | 2008-09-02 | 1 | -1/+3 |
| | |||||
* | * generic/tcl.h: Removed the conditional #define of | dgp | 2008-09-02 | 2 | -9/+23 |
| | | | | | | | _ANSI_ARGS_ that would support pre-prototype C compilers. Since _ANSI_ARGS_ is no longer used in tclDecls.h, it's clear no one compiling against Tcl 8.5 headers is making use of a -DNO_PROTOTYPES configuration. | ||||
* | Use tcltest2 better. | dkf | 2008-09-02 | 2 | -419/+399 |
| | |||||
* | * generic/tclCmdAH.c: nre-enabling [eval]; eval scripts are now | Miguel Sofer | 2008-09-01 | 6 | -47/+244 |
| | | | | | | | * generic/tclOOBasic.c: bytecompiled. Adapted recursion limit tests * tests/interp.test: that were relying on eval not being * tests/nre.test: compiled. Part of the [Bug 2017632] project. * tests/unsupported.test: | ||||
* | Improve the semantics of C-implemented destructors slightly. | dkf | 2008-09-01 | 3 | -19/+50 |
| | |||||
* | Ensure that all TclOO headers get installed. [Bug 2082299] | dkf | 2008-08-29 | 5 | -3/+18 |
| | |||||
* | * README: Bump version number to 8.6a3 | dgp | 2008-08-28 | 10 | -16/+29 |
| | | | | | | | | | | | | * 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: | ||||
* | typo | dgp | 2008-08-27 | 1 | -2/+2 |
| | |||||
* | Added cross references to manual pages that discuss specific variables created | dkf | 2008-08-27 | 3 | -4/+60 |
| | | | | by Tcl. | ||||
* | * generic/tclBasic.c (InfoCoroutine): | Miguel Sofer | 2008-08-26 | 3 | -2/+62 |
| | | | | | | * tests/unsupported.test: new command that returns the FQN of the currently executing coroutine. Lives as infoCoroutine under unsupported, but is designed to become a subcommand of [info] | ||||
* | * generic/tclBasic.c (NRInterpCoroutine): store the caller's | Miguel Sofer | 2008-08-25 | 2 | -2/+8 |
| | | | | | eePtr, stop assuming the coroutine is invoked from the same execEnv where it was created. | ||||
* | Split off the ChangeLog entries for 2006-2007 into their own file. | dkf | 2008-08-24 | 2 | -5916/+5926 |
| | |||||
* | NRE-enable non-compiled [foreach]. [Bug 2017632] | dkf | 2008-08-24 | 4 | -144/+257 |
| | |||||
* | * generic/tclBasic.c: Removed unused var; fixed function | Miguel Sofer | 2008-08-23 | 5 | -9/+14 |
| | | | | | | * generic/tclOOInt.h: pointer declarations (why did gcc start * generic/tclOOMethod.c: complaining all of a sudden?) * generic/tclProc.c: | ||||
* | NRE-enable the ensemble creator (add extra field!) | dkf | 2008-08-23 | 4 | -282/+374 |
| | | | | Arrange for [dict for] to be NRE-enabled when not compiled. [Bug 2017632] | ||||
* | Silence some warnings. | dkf | 2008-08-23 | 1 | -5/+5 |
| | |||||
* | fix ChangeLog entry | Miguel Sofer | 2008-08-23 | 1 | -1/+2 |
| | |||||
* | * generic/tclBasic.c: Set special errocodes: COROUTINE_BUSY, | Miguel Sofer | 2008-08-23 | 3 | -3/+8 |
| | | | | COROUTINE_CANT_YIELD, COROUTINE_ILLEGAL_YIELD. | ||||
* | * generic/tclBasic.c: Set a special COROUTINE_BUSY errorcode | Miguel Sofer | 2008-08-23 | 2 | -1/+6 |
| | |||||
* | * changes: Updates for 8.6a2 release.core_8_6_a2 | dgp | 2008-08-22 | 2 | -2/+14 |
| | |||||
* | speling ficks | dgp | 2008-08-22 | 2 | -7/+7 |
| | |||||
* | * generic/tcl.h: Drop use of USE_COMPAT85_CONST. That added | dgp | 2008-08-22 | 2 | -4/+6 |
| | | | | | indirection without value. Use -DCONST86="" to engage source compat support for code written for 8.5 headers. | ||||
* | * generic/tclUtil.c (TclReToGlob): Added missing set of the | dgp | 2008-08-22 | 2 | -10/+17 |
| | | | | | *exactPtr value to really fix [Bug 2065115]. Also avoid possible DString overflow. | ||||
* | * generic/tclUtil.c (TclReToGlob): Added missing set of the | dgp | 2008-08-22 | 3 | -10/+19 |
| | | | | | *exactPtr value to really fix [Bug 2065115]. * tests/regexpComp.test: Correct duplicate test names. | ||||
* | * generic/tclBasic.c: Previous fix, now done right. | Miguel Sofer | 2008-08-21 | 5 | -56/+65 |
| | | | | | | * generic/tclCmdIL.c: * generic/tclInt.h: * tests/unsupported.test: | ||||
* | really fix translation to escape glob-sensitive chars | hobbs | 2008-08-21 | 2 | -13/+45 |
| | |||||
* | * tests/regexp.test, tests/regexpComp.test: correct re2glob ***= | hobbs | 2008-08-21 | 4 | -6/+73 |
| | | | | | * generic/tclUtil.c (TclReToGlob): translation from exact to anywhere-in-string match. [Bug 2065115] | ||||
* | * generic/tcl.h: Reduced the use of CONST86 and eliminated | dgp | 2008-08-21 | 4 | -50/+65 |
| | | | | | | | | | | | | * generic/tcl.decls: the use of CONST86_RETURN to support source code compatibility with Tcl 8.5 on those public routines passing (Tcl_Filesystem *), (Tcl_Timer *), and (Tcl_Objtype *) values which have been const-ified. What remains is the minimum configurability needed to support code written for pre-8.6 headers via the new -DUSE_COMPAT85_CONST compiler directive. *** POTENTIAL INCOMPATIBILITY *** * generic/tclDecls.h: make genstubs | ||||
* | parts of last commit were not saved :} | Miguel Sofer | 2008-08-21 | 1 | -4/+15 |
| | |||||
* | * generic/tclBasic.c: Fix the cmdFrame level count in | Miguel Sofer | 2008-08-21 | 4 | -9/+40 |
| | | | | | * generic/tclCmdIL.c: coroutines. Fix small bug on coroutine * generic/tclInt.h: rewind. | ||||
* | Added disassembly of TclOO methods. | dkf | 2008-08-21 | 2 | -136/+232 |
| | |||||
* | Align variable naming and typing a bit better with tclNamesp.c. | dkf | 2008-08-21 | 1 | -10/+10 |
| | |||||
* | Added casts to make MSVC happy and re-enable the debug build. | patthoyts | 2008-08-20 | 3 | -4/+9 |
| | |||||
* | Fix performance bug introduced by fix of [Bug 2037727] | dkf | 2008-08-20 | 7 | -29/+89 |
| | |||||
* | General whitespace/style policing | dkf | 2008-08-20 | 1 | -281/+271 |
| | |||||
* | Squelch warning | dkf | 2008-08-20 | 1 | -2/+2 |
| | |||||
* | Remove pointless casts | dkf | 2008-08-20 | 1 | -3/+3 |
| | |||||
* | Minor cleanup | dkf | 2008-08-20 | 1 | -84/+81 |
| | |||||
* | * generic/tclTest.c (TestconcatobjCmd): fix use of internal-only | das | 2008-08-20 | 2 | -3/+15 |
| | | | | | TclInvalidateStringRep macro. [Bug 2057479] | ||||
* | * generic/tclBasic.c: Implementation of [coroutine] and [yield] | Miguel Sofer | 2008-08-17 | 7 | -30/+891 |
| | | | | | | | | * generic/tclCmdAH.c: commands (in tcl::unsupported). * generic/tclCompile.h: * generic/tclExecute.c: * generic/tclInt.h: * tests/unsupported.test: | ||||
* | * generic/tclTest.c (TestconcatobjCmd): | Miguel Sofer | 2008-08-17 | 4 | -8/+301 |
| | | | | | | | | | | * generic/tclUtil.c (Tcl_ConcatObj): * tests/util.test (util-4.7): fix [Bug 1447328]; the original "fix" turned Tcl_ConcatObj() into a hairy monster. This was exposed by [Bug 2055782]. Additionally, Tcl_ConcatObj could corrupt its input under certain conditions! *** NASTY BUG FIXED *** | ||||
* | fix last commit | Miguel Sofer | 2008-08-16 | 1 | -1/+4 |
| |