Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix miguel's problem with env failures; need LANG to get [encoding system] | dkf | 2008-07-19 | 1 | -0/+4 |
| | | | | right in subprocesses... | ||||
* | More test cleanup. | dkf | 2008-07-19 | 1 | -2/+3 |
| | |||||
* | Rewrite to use tcltest2 and not generate non-ascii chars in results. | dkf | 2008-07-19 | 1 | -1/+5 |
| | | | | Part of fix of [Bug 1513659] | ||||
* | new TclNRAddCallback macro for internal use instead of the public | Miguel Sofer | 2008-07-18 | 1 | -0/+16 |
| | | | | Tcl_NRAddCallback | ||||
* | NRE-enable the TclOO constructor system. | dkf | 2008-07-18 | 1 | -0/+7 |
| | |||||
* | * tests/NRE.test: Added basic tests for deep TclOO calls | Miguel Sofer | 2008-07-18 | 1 | -0/+2 |
| | |||||
* | * generic/tcl.decls: Change the public api prefix from | Miguel Sofer | 2008-07-18 | 1 | -0/+18 |
| | | | | | | | | | | | | | | | | | * generic/tcl.h: TclNR_foo to Tcl_NRfoo * generic/tclBasic.c: * generic/tclDecls.h: * generic/tclDictObj.c: * generic/tclExecute.c: * generic/tclInterp.c: * generic/tclNRE.h: * generic/tclNamesp.c: * generic/tclOO.c: * generic/tclOOBasic.c: * generic/tclOOCall.c: * generic/tclOOMethod.c: * generic/tclProc.c: * generic/tclStubInit.c: | ||||
* | NRE-enable oo::object.eval | dkf | 2008-07-18 | 1 | -0/+5 |
| | |||||
* | * generic/tclDictObj.c (DictWithCmd, DictUpdateCmd): fix | Miguel Sofer | 2008-07-18 | 1 | -0/+8 |
| | | | | | | | refcounting bugs that caused crashes [Bug 2017857]. * generic/tclBasic.c (TclNREvalObjEx): streamline the management of the command frame (opt). | ||||
* | NRE-ify the non-compiled version of [dict update]. | dkf | 2008-07-17 | 1 | -1/+3 |
| | |||||
* | Add NRE support to [dict with]. | dkf | 2008-07-17 | 1 | -1/+6 |
| | |||||
* | * win/tclWinThrd.c: Test for TLS_OUT_OF_INDEXES to make certain that | georgeps | 2008-07-16 | 1 | -0/+5 |
| | | | | thread key creation is successful. | ||||
* | NRE-aware TclOO. | dkf | 2008-07-16 | 1 | -30/+42 |
| | |||||
* | * tests/NRE.test: better constraint for testing the | Miguel Sofer | 2008-07-16 | 1 | -0/+4 |
| | | | | | * tests/stack.test: existence of teststacklimit, to insure that the testsuite runs under tclsh. | ||||
* | * generic/tclParse.c: fixing incomplete reversion of "fix" for | Miguel Sofer | 2008-07-15 | 1 | -0/+5 |
| | | | | [Bug 2017583], missing TclResetCancellation call. | ||||
* | Fix [Bug 2018603] | dkf | 2008-07-15 | 1 | -0/+2 |
| | |||||
* | Fix error in example. [Bug 2016740] | dkf | 2008-07-15 | 1 | -0/+2 |
| | |||||
* | Factor the ensemble code a bit more. | dkf | 2008-07-15 | 1 | -0/+7 |
| | |||||
* | * generic/tclParse.c: reverting the "fix" for [Bug 2017583], | Miguel Sofer | 2008-07-14 | 1 | -0/+6 |
| | | | | | * tests/parse.test: numLevel management and TclInterpReady check seems to be necessary after all. | ||||
* | Store ClientDatas in NRE callback storage as an array; that's how they are | dkf | 2008-07-14 | 1 | -7/+15 |
| | | | | referred to in callback implementations anyway. | ||||
* | * generic/tclParse.c: Remove unneeded TclInterpReady call | Miguel Sofer | 2008-07-14 | 1 | -1/+2 |
| | |||||
* | * generic/tclExecute.c: Remove unneeded TclInterpReady call | Miguel Sofer | 2008-07-14 | 1 | -0/+2 |
| | |||||
* | * generic/tclBasic.c.: Embedded Tcl_Canceled() calls into | Miguel Sofer | 2008-07-14 | 1 | -4/+7 |
| | | | | | * generic/tclExecute.c: TclInterpReady(). * generic/tclParse.c: | ||||
* | * generic/tclVar.c: fix error message | Miguel Sofer | 2008-07-14 | 1 | -0/+2 |
| | |||||
* | ChangeLog fix | Miguel Sofer | 2008-07-14 | 1 | -1/+2 |
| | |||||
* | * generic/tclParse.c: remove unnecessary numLevel management | Miguel Sofer | 2008-07-14 | 1 | -0/+3 |
| | | | | [Bug 2017583] | ||||
* | * generic/tclBasic.c.: NRE left too many calls to | Miguel Sofer | 2008-07-14 | 1 | -1/+5 |
| | | | | | | * generic/tclExecute.c: TclResetCancellation lying around: it * generic/tclProc.c: only needs to be called prior to any iPtr->numLevels++. Thanks mistachkin. | ||||
* | * generic/tclBasic.c: TclResetCancellation() calls were misplaced | Miguel Sofer | 2008-07-13 | 1 | -0/+3 |
| | | | | (merge mishap); stray //. Thanks patthoyts. | ||||
* | * generic/tclInt.h: the new macros TclSmallAlloc and TclSmallFree | Miguel Sofer | 2008-07-13 | 1 | -0/+5 |
| | | | | were badly defined under mem debugging [Bug 2017240] (thx das) | ||||
* | NRE implementation [Patch 2017110] | Miguel Sofer | 2008-07-13 | 1 | -0/+39 |
| | |||||
* | Minor updates for better readability. | dkf | 2008-07-11 | 1 | -92/+96 |
| | |||||
* | * generic/tclGet.c: Corrected out of date comments and removed | dgp | 2008-07-08 | 1 | -0/+12 |
| | | | | | | | | | | | * generic/tclInt.decls: internal routine TclGetLong() that's no longer used. If an extension is using this from the internal stubs table, it can shift to the public routine Tcl_GetLongFromObj() or can request addition of a public Tcl_GetLong(). ***POTENTIAL INCOMPATIBILITY*** * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c: | ||||
* | Tighten up language. | dkf | 2008-07-08 | 1 | -0/+5 |
| | |||||
* | * generic/tclCmdIL.c (InfoFrameCmd): Fixed unsafe idiom of setting | andreas_kupries | 2008-07-07 | 1 | -0/+5 |
| | | | | the interp result found by Don Porter. | ||||
* | typo | dgp | 2008-07-07 | 1 | -1/+1 |
| | |||||
* | Correct examples. [Bug 1982642] | dkf | 2008-07-07 | 1 | -0/+4 |
| | |||||
* | Improve [lindex] examples. | dkf | 2008-07-06 | 1 | -0/+4 |
| | |||||
* | * generic/tclIORChan.c (InvokeTclMethod): Fixed the memory leak | andreas_kupries | 2008-07-03 | 1 | -0/+6 |
| | | | | | reported in [Bug 1987821]. Thanks to Miguel for the rpeort and Don Porter for tracking the cause down. | ||||
* | * library/package.tcl: Removed [file readable] testing from | dgp | 2008-07-03 | 1 | -0/+8 |
| | | | | | | | [tclPkgUnknown] and friends. We find out soon enough whether a file is readable when we try to [source] it, and not testing before allows us to workaround the bugs on some common filesystems where [file readable] lies to us. [Patch 1969717] | ||||
* | Add focussed stack limiting to the RE compiler. Tuning might not yet be right | dkf | 2008-07-01 | 1 | -1/+6 |
| | | | | but it passes everything normally checked in the test suite. [Bug 1905562] | ||||
* | Fix [2006884] | dkf | 2008-07-01 | 1 | -0/+5 |
| | |||||
* | Clean up typedef formatting | dkf | 2008-06-30 | 1 | -7/+9 |
| | |||||
* | * doc/ObjectType.3: Updated documentation of the Tcl_ObjType | dgp | 2008-06-30 | 1 | -0/+5 |
| | | | | struct to match expectations of Tcl 8.5 [Bug 1917650]. | ||||
* | Lrange cleanup and in-place optimization [Patch 1890831] | ferrieux | 2008-06-29 | 1 | -0/+5 |
| | |||||
* | Avoid useless String conversion for CONCAT1 of pure byte arrays [Patch 1953758]. | ferrieux | 2008-06-29 | 1 | -0/+5 |
| | |||||
* | Prepare Tcl's docs for life as 8.6 (remove out of date change bars, fix | dkf | 2008-06-29 | 1 | -0/+6 |
| | | | | typedefs, add a few missing bits) | ||||
* | * generic/tclPathObj.c: Plug memory leak in [Bug 1999176] fix. Thanks | dgp | 2008-06-29 | 1 | -0/+5 |
| | | | | to Rolf Ade for detecting. | ||||
* | Fix [Bug 2004256] | dkf | 2008-06-29 | 1 | -0/+3 |
| | |||||
* | Fix [Bug 2004480] | dkf | 2008-06-28 | 1 | -16/+21 |
| | |||||
* | * generic/tclPathObj.c: Plug memory leak in [Bug 1972879] fix. Thanks | dgp | 2008-06-28 | 1 | -0/+5 |
| | | | | Rolf Ade for detecting and Dan Steffen for the fix [Bug 2004654]. |