Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | reverted earlier rename from tcl*Stubs to | nijtmans | 2010-02-15 | 6 | -27/+27 |
| | | | | | | | | tcl*ConstStubs, it's not necessary at all. tclEnsemble.c: Fix signed-unsigned mismatch make tclWinProcs "const" Add first part of mslu support, See [Feature Request #2819611] | ||||
* | Fix [Bug 2950259] so that deleting an object by killing its namespace will | dkf | 2010-02-15 | 3 | -4/+69 |
| | | | | reliably call the object's destructor. | ||||
* | Reduce code nesting in [namespace ensemble] implementation. | dkf | 2010-02-14 | 1 | -139/+116 |
| | |||||
* | Corrected a comment. | dkf | 2010-02-14 | 1 | -3/+2 |
| | |||||
* | Hive off the ensemble code into its own file. | dkf | 2010-02-13 | 5 | -3496/+3596 |
| | | | | Split the [switch] compiler for sanity's sake. | ||||
* | [Bug 2949740]: Do not try to put a NULL pipeline channel into binary mode. | dkf | 2010-02-11 | 1 | -2/+2 |
| | |||||
* | Tcl Bug 2826551 regexp bugs related to -all -line and -start and newlines | dkf | 2010-02-11 | 1 | -20/+29 |
| | |||||
* | [Bug 2949397]: Prevent destructors from running on the two core class objects | dkf | 2010-02-11 | 1 | -2/+9 |
| | | | | when the whole interpreter is being destroyed. | ||||
* | Forgot the magic bias values. FNV is wildly magical... | dkf | 2010-02-10 | 2 | -4/+4 |
| | |||||
* | Minor corrections as recommended by Joe English. | dkf | 2010-02-09 | 1 | -4/+4 |
| | |||||
* | Small cleanups of formatting issues | dkf | 2010-02-09 | 1 | -72/+88 |
| | |||||
* | Compilation of [try] now enabled! | dkf | 2010-02-09 | 3 | -4/+646 |
| | |||||
* | [Bug 2947783]: Ensure that result is an unshared object before appending to it. | dkf | 2010-02-08 | 1 | -1/+19 |
| | |||||
* | Upgrade Tcl's hash function to use the FNV-32 algorithm. This is marginally | dkf | 2010-02-07 | 3 | -76/+30 |
| | | | | | faster and gives a bit better distribution of keys (especially in large hash tables) but does change hash iteration order. | ||||
* | Added basic compilation of [error] (the most common case only). | dkf | 2010-02-05 | 3 | -4/+52 |
| | |||||
* | Follow-up to earlier commit today: | nijtmans | 2010-02-05 | 6 | -41/+30 |
| | | | | | | Eliminate the need for an extra Stubs Pointer for adressing a static stub table: Just change the exported table from static to MODULE_SCOPE. | ||||
* | More consistency in errorcode generation. | dkf | 2010-02-05 | 1 | -14/+25 |
| | |||||
* | NRE-enabled destructors! Also more generation of errorcodes. | dkf | 2010-02-05 | 1 | -17/+49 |
| | |||||
* | Use 'const' more often for pointers to read-only structures. | dkf | 2010-02-05 | 1 | -177/+203 |
| | |||||
* | Follow-up to [2010-01-29] commit: | nijtmans | 2010-02-05 | 14 | -851/+851 |
| | | | | | | | | | | prevent space within stub table function parameters if the parameter type is a pointer. Minor formatting, and VOID -> void. Change signature of TclNRInterpProcCore, and TclOONewProc(Instance|)MethodEx, indicating that errorProc is a function pointer tclVar.c: fixed two gcc warnings | ||||
* | Use the object RE interface for faster matching in [array names -regexp]. | dkf | 2010-02-04 | 1 | -121/+136 |
| | |||||
* | Make [array get] work again with a trivial pattern. | dkf | 2010-02-04 | 1 | -4/+4 |
| | |||||
* | Minor updates: more errorcodes, less C stack levels for old APIs | dkf | 2010-02-04 | 1 | -98/+191 |
| | |||||
* | More corrections to the [array unset] command. | dkf | 2010-02-03 | 1 | -26/+30 |
| | |||||
* | Turned the [array] command into a true ensemble. Test changes indicate some | dkf | 2010-02-02 | 3 | -560/+1184 |
| | | | | alteration to error messages, otherwise no change. | ||||
* | Chisel away at reducing the cost of recent changes. | dkf | 2010-02-02 | 1 | -59/+55 |
| | |||||
* | [Bug 2944404] Be careful in case an object deletes itself in its destructor. | dkf | 2010-02-02 | 1 | -3/+6 |
| | |||||
* | Switch to using the new faster var-ref internal API inside [array unset] when | dkf | 2010-02-02 | 1 | -4/+5 |
| | | | | it makes sense. | ||||
* | Fix [Bug 2939073]: dangling ref when an unset trace triggered by [array unset] | dkf | 2010-02-02 | 1 | -20/+59 |
| | | | | hits the next element to be deleted. | ||||
* | Reduce obscurity of function names. Do a little recursion unrolling. | dkf | 2010-02-01 | 2 | -352/+338 |
| | |||||
* | Use attemptckalloc instead of ckalloc; RE engine knows how to deal with failure | dkf | 2010-02-01 | 1 | -2/+2 |
| | |||||
* | [Bug 2942697]: Rework the RE engine so that certain pathological patterns are | dkf | 2010-02-01 | 1 | -57/+67 |
| | | | | | matched much more rapidly. Many thanks to Tom Lane for dianosing this issue and providing an initial patch. | ||||
* | One more function that needs the LVT index passing into it now. | dkf | 2010-01-31 | 1 | -5/+7 |
| | |||||
* | Unbreak the build | dkf | 2010-01-31 | 1 | -31/+35 |
| | |||||
* | Make the [unset] command be bytecode compiled. | dkf | 2010-01-30 | 7 | -376/+689 |
| | |||||
* | Reverted Tcl_ThreadDataKey type change, | nijtmans | 2010-01-29 | 1 | -12/+11 |
| | | | | | | | see Bug #2942081 Changed some Tcl_CallFrame fields from "char *" to "void *". This saves unnecessary space on Cray's (and it's simply more correct). | ||||
* | - genStubs.tcl: No longer generate a space after "*" and | nijtmans | 2010-01-29 | 16 | -1766/+1690 |
| | | | | | | | | | | immediately after a function name, so the format of function definitions in tcl*Decls.h matches all other tcl*.h header files. - Change Tcl_ArgvFuncProc, Tcl_ArgvGenFuncProc and GetFrameInfoValueProc to be function definitions, not pointers, for consistency with all other Tcl function definitions. | ||||
* | Make things compile... D'oh! | dkf | 2010-01-28 | 2 | -5/+7 |
| | |||||
* | Improvements to destructor handling. | dkf | 2010-01-28 | 3 | -18/+91 |
| | | | | Stop crashes from odd destruction routes. | ||||
* | Remove double includes (which causes a | nijtmans | 2010-01-25 | 2 | -5/+2 |
| | | | | | warning in CYGWIN compiles) Add confdefs.h to unix/.cvsignore | ||||
* | Revert [2009-12-21] change in tcl.h, in stead | nijtmans | 2010-01-22 | 1 | -8/+2 |
| | | | | | | | | resolve the CYGWIN inclusion problems by re-arranging the inclusions at other places. Make cygwin configuration error into a warning: CYGWIN compilation works although there still are test failures. | ||||
* | Revert [2009-12-21] change in tcl.h, in stead | nijtmans | 2010-01-22 | 4 | -28/+28 |
| | | | | | | | | resolve the CYGWIN inclusion problems by re-arranging the inclusions at other places. Make cygwin configuration error into a warning: CYGWIN compilation works although there still are test failures. | ||||
* | Improve error code generation from some of the tailcall-related bits of TEBC. | dkf | 2010-01-22 | 1 | -29/+32 |
| | |||||
* | * generic/tclCompile.h: NRE-enable direct eval on BC spoilage | Miguel Sofer | 2010-01-21 | 2 | -25/+25 |
| | | | | | * generic/tclExecute.c: [Bug 2910748] * tests/nre.test: | ||||
* | * generic/tclIO.c (CreateScriptRecord): [Bug 2918110]: Initialize | andreas_kupries | 2010-01-18 | 1 | -6/+23 |
| | | | | | | | | the EventScriptRecord (esPtr) fully before handing it to Tcl_CreateChannelHandler for registration. Otherwise a reflected channel calling 'chan postevent' (== Tcl_NotifyChannel) in its 'watchProc' will cause the function 'TclChannelEventScriptInvoker' to be run on an uninitialized structure. | ||||
* | Ensure that objects are released in all cases (hard to test this particular | dkf | 2010-01-18 | 1 | -1/+4 |
| | | | | one without a very large system, but the leak path existed) | ||||
* | [Bug 2932421]: Make [format] less likely to smash intreps. | dkf | 2010-01-18 | 1 | -40/+48 |
| | |||||
* | Fix TCL_LL_MODIFIER for Cygwin | nijtmans | 2010-01-13 | 4 | -12/+17 |
| | | | | | and various other minor CYGWIN compilation problems | ||||
* | * win/tclWinDde.c: VC++ 6.0 doesn't have | nijtmans | 2010-01-10 | 3 | -9/+9 |
| | | | | | | | | | | | | | | | | | | | | * win/tclWinReg.c PDWORD_PTR * win/tclWinThrd.c: Fix various minor gcc warnings. * win/tclWinTime.c * win/tclWinConsole.c Put channel type definitions * win/tclWinChan.c in static const memory * win/tclWinPipe.c * win/tclWinSerial.c * win/tclWinSock.c * generic/tclIOGT.c * generic/tclIORChan.c * generic/tclIORTrans.c * unix/tclUnixChan.c * unix/tclUnixPipe.c * unix/tclUnixSock.c * unix/configure (regenerated with autoconf 2.59) * tests/info.test: Make test independant from tcltest implementation. | ||||
* | * generic/tclPathObj.c (TclPathPart): Correct inconsistency between | dgp | 2010-01-05 | 1 | -26/+10 |
| | | | | | | * tests/fileName.test (filename-14.31): the string rep and the intrep of a path value created by [file rootname]. Thanks to Vitaly Magerya for reporting. [Bug 2918610] |