Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | TIP #304 implementation | ferrieux | 2008-07-21 | 18 | -12300/+12518 |
| | |||||
* | use TclEvalObjv instead of Tcl_EvalObjv at selected spots | Miguel Sofer | 2008-07-21 | 2 | -7/+7 |
| | |||||
* | * generic/tcl.decls: Changed the implementation of | Miguel Sofer | 2008-07-21 | 9 | -75/+106 |
| | | | | | | | | | | * generic/tclBasic.c: [namespace import]; removed * generic/tclDecls.h: Tcl_NRObjProc, replaced with * generic/tclExecute.c: Tcl_NRCmdSwap (proposed public * generic/tclInt.h: NRE API). This should fix * generic/tclNRE.h: [Bug 582506]. * generic/tclNamesp.c: * generic/tclStubInit.c: | ||||
* | Inode numbers on Windows are not unique so avoid the inode check on this ↵ | patthoyts | 2008-07-21 | 2 | -5/+11 |
| | | | | platform [Bug 2015723] | ||||
* | ChangeLog fix | Miguel Sofer | 2008-07-21 | 1 | -1/+1 |
| | |||||
* | fix uninited and unused var warnings | Miguel Sofer | 2008-07-21 | 1 | -3/+2 |
| | |||||
* | * generic/tclBasic.c: NRE: enabled calling NR commands | Miguel Sofer | 2008-07-21 | 7 | -254/+373 |
| | | | | | | | | * generic/tclExecute.c: from the callbacks. Completely * generic/tclInt.h: redone tailcall implementation * generic/tclNRE.h: using the new feature. * generic/tclProc.c: * tests/NRE.test: | ||||
* | add cleanup to fix subsequent test failures with -singleproc 1 | das | 2008-07-20 | 1 | -14/+36 |
| | |||||
* | * tests/fileName.test: Repaired the failing test fileName-15.7 | Kevin B Kenny | 2008-07-20 | 2 | -2/+7 |
| | | | | from dkf's commit earlier today. | ||||
* | Fix [Bug 2008248] and make dict->list->dict round trip efficient to boot. | dkf | 2008-07-20 | 3 | -12/+63 |
| | |||||
* | Reduce obscurity of tests by eliminating many [catch]es through use of tcltest2 | dkf | 2008-07-20 | 2 | -624/+556 |
| | |||||
* | Finish cleaning up this file (move cleanup actions out of test bodies, etc.) | dkf | 2008-07-20 | 1 | -96/+124 |
| | |||||
* | fix [2021443] inconsistant "wrong # args" messages | nijtmans | 2008-07-19 | 41 | -110/+110 |
| | |||||
* | Fix a gcc warning when compiling Tcl with mingw32 | nijtmans | 2008-07-19 | 1 | -4/+4 |
| | | | | | tclWinTest.c: In function `TestplatformChmod': tclWinTest.c:706: warning: dereferencing type-punned pointer will break strict-a liasing rules | ||||
* | Fix miguel's problem with env failures; need LANG to get [encoding system] | dkf | 2008-07-19 | 2 | -30/+36 |
| | | | | right in subprocesses... | ||||
* | More test cleanup. | dkf | 2008-07-19 | 2 | -275/+240 |
| | |||||
* | Rewrite to use tcltest2 and not generate non-ascii chars in results. | dkf | 2008-07-19 | 2 | -56/+63 |
| | | | | Part of fix of [Bug 1513659] | ||||
* | new TclNRAddCallback macro for internal use instead of the public | Miguel Sofer | 2008-07-18 | 13 | -54/+86 |
| | | | | Tcl_NRAddCallback | ||||
* | NRE-enable the TclOO constructor system. | dkf | 2008-07-18 | 4 | -37/+211 |
| | |||||
* | * tests/NRE.test: Added basic tests for deep TclOO calls | Miguel Sofer | 2008-07-18 | 2 | -1/+91 |
| | |||||
* | * generic/tcl.decls: Change the public api prefix from | Miguel Sofer | 2008-07-18 | 16 | -138/+156 |
| | | | | | | | | | | | | | | | | | * 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 | 2 | -13/+33 |
| | |||||
* | Minor fixes (clearer panic messages, formatting of comments) | dkf | 2008-07-18 | 1 | -55/+50 |
| | |||||
* | * generic/tclDictObj.c (DictWithCmd, DictUpdateCmd): fix | Miguel Sofer | 2008-07-18 | 3 | -27/+28 |
| | | | | | | | refcounting bugs that caused crashes [Bug 2017857]. * generic/tclBasic.c (TclNREvalObjEx): streamline the management of the command frame (opt). | ||||
* | Tinkering | dkf | 2008-07-17 | 1 | -29/+37 |
| | |||||
* | stop crash in test suite! | dkf | 2008-07-17 | 1 | -1/+11 |
| | |||||
* | NRE-ify the non-compiled version of [dict update]. | dkf | 2008-07-17 | 2 | -10/+43 |
| | |||||
* | Add NRE support to [dict with]. | dkf | 2008-07-17 | 2 | -12/+56 |
| | |||||
* | * win/tclWinThrd.c: Test for TLS_OUT_OF_INDEXES to make certain that | georgeps | 2008-07-16 | 2 | -1/+10 |
| | | | | thread key creation is successful. | ||||
* | NRE-aware TclOO. | dkf | 2008-07-16 | 6 | -86/+280 |
| | |||||
* | * tests/NRE.test: better constraint for testing the | Miguel Sofer | 2008-07-16 | 3 | -7/+18 |
| | | | | | * 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 | 2 | -1/+7 |
| | | | | [Bug 2017583], missing TclResetCancellation call. | ||||
* | Fix [Bug 2018603] | dkf | 2008-07-15 | 2 | -33/+26 |
| | |||||
* | Fix error in example. [Bug 2016740] | dkf | 2008-07-15 | 2 | -2/+4 |
| | |||||
* | Factor the ensemble code a bit more. | dkf | 2008-07-15 | 2 | -168/+243 |
| | |||||
* | * generic/tclParse.c: reverting the "fix" for [Bug 2017583], | Miguel Sofer | 2008-07-14 | 3 | -6/+19 |
| | | | | | * tests/parse.test: numLevel management and TclInterpReady check seems to be necessary after all. | ||||
* | Tidy up code for clarity. | dkf | 2008-07-14 | 2 | -436/+431 |
| | |||||
* | Store ClientDatas in NRE callback storage as an array; that's how they are | dkf | 2008-07-14 | 4 | -22/+28 |
| | | | | referred to in callback implementations anyway. | ||||
* | * generic/tclParse.c: Remove unneeded TclInterpReady call | Miguel Sofer | 2008-07-14 | 2 | -8/+6 |
| | |||||
* | * generic/tclExecute.c: Remove unneeded TclInterpReady call | Miguel Sofer | 2008-07-14 | 2 | -12/+3 |
| | |||||
* | * generic/tclBasic.c.: Embedded Tcl_Canceled() calls into | Miguel Sofer | 2008-07-14 | 4 | -22/+14 |
| | | | | | * generic/tclExecute.c: TclInterpReady(). * generic/tclParse.c: | ||||
* | * generic/tclVar.c: fix error message | Miguel Sofer | 2008-07-14 | 2 | -2/+4 |
| | |||||
* | remove unused variable | Miguel Sofer | 2008-07-14 | 1 | -3/+1 |
| | |||||
* | ChangeLog fix | Miguel Sofer | 2008-07-14 | 1 | -1/+2 |
| | |||||
* | * generic/tclParse.c: remove unnecessary numLevel management | Miguel Sofer | 2008-07-14 | 3 | -8/+7 |
| | | | | [Bug 2017583] | ||||
* | * generic/tclBasic.c.: NRE left too many calls to | Miguel Sofer | 2008-07-14 | 4 | -11/+8 |
| | | | | | | * generic/tclExecute.c: TclResetCancellation lying around: it * generic/tclProc.c: only needs to be called prior to any iPtr->numLevels++. Thanks mistachkin. | ||||
* | more consistent wrong # arg messages: change all messages containing ↵ | nijtmans | 2008-07-13 | 23 | -72/+72 |
| | | | | ?options? to the form ?-option value ...? | ||||
* | * generic/tclBasic.c: TclResetCancellation() calls were misplaced | Miguel Sofer | 2008-07-13 | 2 | -6/+6 |
| | | | | (merge mishap); stray //. Thanks patthoyts. | ||||
* | * generic/tclInt.h: the new macros TclSmallAlloc and TclSmallFree | Miguel Sofer | 2008-07-13 | 2 | -1/+31 |
| | | | | were badly defined under mem debugging [Bug 2017240] (thx das) | ||||
* | whitespace | das | 2008-07-13 | 1 | -174/+174 |
| |