Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added example and cross-reference | dkf | 2004-05-24 | 1 | -2/+9 |
| | |||||
* | Adding potential incompatibility warning in Changelog | Miguel Sofer | 2004-05-24 | 1 | -0/+12 |
| | |||||
* | Fix in comments | Miguel Sofer | 2004-05-23 | 1 | -10/+7 |
| | |||||
* | * generic/tclNamesp.c (Tcl_FindNamespaceVar): [Bug 959052] fixed, | Miguel Sofer | 2004-05-23 | 4 | -19/+56 |
| | | | | | | | insuring that no "zombie" variables are found. * generic/tclVar.c (TclLookupSimpleVar): comments re [Bug 736729] (predecessor of [Bug 959052]) removed. * tests/namespace.test: added tests 17.10-12 | ||||
* | * generic/tclVar.c (TclObjLookupVar, TclObjUnsetVar2): fix for new | Miguel Sofer | 2004-05-22 | 2 | -12/+39 |
| | | | | | | | | (in tcl8.4) exteriorisations of [Bug 736729] due to the use of tclNsVarNameType obj types. Reenabling the use of this objType ("VAR ref absolute" benchmark down to 66 ms, from 230). Added comments in TclLookupSimpleVar explaining my current understanding of [Bug 736729]. | ||||
* | * generic/tclVar.c: fix for [Bug 735335]. The use of | Miguel Sofer | 2004-05-22 | 2 | -21/+30 |
| | | | | | tclNsVarNameType objs is still disabled, pending resolution of [Bug 736729]. | ||||
* | Reformulated so as to make clear what are examples. | dkf | 2004-05-22 | 1 | -15/+17 |
| | |||||
* | * tests/namespace.test (namespace-41.3): removed the {knownBug} | Miguel Sofer | 2004-05-22 | 2 | -2/+8 |
| | | | | | constraint: [Bug 231259] is closed since nov 2001, and the fix of [Bug 729692] (INST_START_CMD) makes the test succeed. | ||||
* | Minor syntactic fixes. Removed a clause that read very strangely and | dkf | 2004-05-22 | 1 | -5/+1 |
| | | | | | was effectively duplicated elsewhere (and was a hold-over from previous versions of the page) | ||||
* | Use longer dashes (where available) | dkf | 2004-05-21 | 1 | -5/+5 |
| | |||||
* | Typo! | dkf | 2004-05-21 | 1 | -2/+2 |
| | |||||
* | Added examples. | dkf | 2004-05-21 | 1 | -1/+28 |
| | |||||
* | Added some more examples; there are actually examples scattered through the ↵ | dkf | 2004-05-21 | 1 | -12/+39 |
| | | | | file anyway. | ||||
* | One more fix; this time it really does let this file build... | dkf | 2004-05-21 | 1 | -9/+15 |
| | |||||
* | Make TCL_COMPILE_DEBUG path through TEBC work... | dkf | 2004-05-21 | 2 | -8/+9 |
| | |||||
* | Variables should only ever be declarated at the start of a block... | dkf | 2004-05-21 | 2 | -3/+8 |
| | |||||
* | 2004-05-21 Miguel Sofer <msofer@users.sf.net> | Miguel Sofer | 2004-05-21 | 2 | -1114/+1285 |
| | | | | | | | | | | * generic/tclExecute.c (TclExecuteByteCode): reorganised TEBC automatic variables, defining them in tight blocks instead of at the function level. This has three purposes: - it simplifies the analysis of individual instructions - it is preliminary work to the non-recursive engine - it allows a better register allocation by the optimiser; under gcc3.3, this results in up to 10% runtime in some tests | ||||
* | Added examples | dkf | 2004-05-20 | 1 | -1/+39 |
| | |||||
* | Added examples. | dkf | 2004-05-20 | 1 | -2/+61 |
| | |||||
* | It seems all NaN handling is non-portable except where the platform is | dkf | 2004-05-20 | 1 | -5/+5 |
| | | | | incredibly constrained. | ||||
* | Delete limit callbacks properly when the interpreters involved are deleted. | dkf | 2004-05-20 | 5 | -5/+174 |
| | |||||
* | * win/tclWinFile.c (TclpMatchInDirectory): fix for an issue | Kevin B Kenny | 2004-05-19 | 2 | -2/+13 |
| | | | | | | | | | where there was a sneak path from Tcl_DStringFree to SetErrorCode(0). The result was that the error code could be reset between a call to FindFirstFileEx and the check of its status return, leading to a bizarre error return of {POSIX unknown {No error}}. (Found in unplanned test - no incident logged at SourceForge.) | ||||
* | Added test based on suggestion by Miguel Sofer | dkf | 2004-05-19 | 1 | -1/+17 |
| | |||||
* | Oops! Duplicated a -constraints section, which confused tcltest | dkf | 2004-05-19 | 1 | -3/+3 |
| | |||||
* | Enable a test of limiting tight loops. | dkf | 2004-05-19 | 3 | -9/+16 |
| | |||||
* | Silly error | dkf | 2004-05-19 | 1 | -2/+2 |
| | |||||
* | Spelling whoops! Moved constraint declaration to near top of file | dkf | 2004-05-19 | 1 | -2/+3 |
| | |||||
* | Massive test cleanup; all tests are run, and constraints are used where ↵ | dkf | 2004-05-19 | 32 | -1227/+986 |
| | | | | necessary. | ||||
* | corrected test name duplication | dgp | 2004-05-19 | 1 | -2/+2 |
| | |||||
* | * tclIO.c: Fixed [SF Tcl Bug 943274]. This is the same problem as | andreas_kupries | 2004-05-19 | 3 | -7/+120 |
| | | | | | | | | | | | | | * tclIO.h: [SF Tcl Bug 462317], see ChangeLog entry 2001-09-26. The fix done at that time is incomplete. It is possible to get around it if the actual read operation is defered and not executed in the event handler itself. Instead of tracking if we are in an read caused by a synthesized fileevent we now track if the OS has delivered a true event = actual data and bypass the driver if a read finds that there is no actual data waiting. The flag is cleared by a short or full read. | ||||
* | fix to 'file dirname' and to fs refCount documentation | vincentdarley | 2004-05-19 | 4 | -11/+65 |
| | |||||
* | Fix whitespace | dkf | 2004-05-19 | 2 | -31/+2 |
| | |||||
* | Fix whitespace | dkf | 2004-05-19 | 4 | -53/+6 |
| | |||||
* | Fix whitespace and add test for case when pwd can generate an error | dkf | 2004-05-19 | 1 | -16/+7 |
| | |||||
* | Remove trailing whitespace | dkf | 2004-05-19 | 2 | -26/+2 |
| | |||||
* | Use constraints instead of conditional tests | dkf | 2004-05-19 | 2 | -58/+21 |
| | |||||
* | Fix whitespace | dkf | 2004-05-19 | 1 | -37/+2 |
| | |||||
* | Removed trailing whitespace | dkf | 2004-05-19 | 2 | -26/+2 |
| | |||||
* | Converted from conditional tests into constrained tests | dkf | 2004-05-19 | 1 | -108/+129 |
| | |||||
* | Remove trailing whitespace | dkf | 2004-05-19 | 3 | -39/+3 |
| | |||||
* | Standardize whitespace handling | dkf | 2004-05-19 | 1 | -20/+1 |
| | |||||
* | Convert conditional tests into constrained tests | dkf | 2004-05-19 | 2 | -63/+29 |
| | |||||
* | Standardize various minor aspects of test style | dkf | 2004-05-19 | 1 | -23/+12 |
| | |||||
* | Convert conditional testing into constraints | dkf | 2004-05-19 | 1 | -54/+37 |
| | |||||
* | Remove trailing whitespace | dkf | 2004-05-19 | 1 | -13/+1 |
| | |||||
* | Use constraints, not conditional tests | dkf | 2004-05-19 | 1 | -25/+8 |
| | |||||
* | Remove trailing whitespace | dkf | 2004-05-19 | 5 | -64/+4 |
| | |||||
* | Use contraints, not conditional tests. | dkf | 2004-05-19 | 1 | -74/+62 |
| | |||||
* | Use constraints, not conditional invokation of test. | dkf | 2004-05-19 | 1 | -30/+15 |
| | |||||
* | Fixed get.test so it really tests Tcl_GetInt() and uses constraints properly. | dkf | 2004-05-19 | 3 | -71/+81 |
| |