Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert unreleased improvements to pkgs/itcl . | dgp | 2009-02-02 | 1 | -1/+0 |
| | |||||
* | no message | davygrvy | 2009-02-01 | 1 | -0/+2 |
| | |||||
* | no message | davygrvy | 2009-02-01 | 1 | -0/+4 |
| | |||||
* | Added another example. [Bug 1216074] | dkf | 2009-01-30 | 1 | -0/+2 |
| | |||||
* | Added example. | dkf | 2009-01-30 | 1 | -0/+4 |
| | |||||
* | Fix [Bug 2006888] | dkf | 2009-01-29 | 1 | -0/+4 |
| | |||||
* | * generic/tclInterp.c: Convert the [interp] command into a | dgp | 2009-01-29 | 1 | -2/+3 |
| | | | | | | * tests/interp.test: [namespace ensemble]. Work in progress * tests/nre.test: to NRE-enable the [interp invokehidden] subcommand. | ||||
* | Fix [Bug 2519474] | dkf | 2009-01-29 | 1 | -0/+3 |
| | |||||
* | Fix [Bug 2537839] | dkf | 2009-01-29 | 1 | -0/+5 |
| | |||||
* | * generic/tclInterp.c: Convert the [interp] command into a | dgp | 2009-01-29 | 1 | -0/+6 |
| | | | | | [namespace ensemble]. Work in progress to NRE-enable the [interp invokehidden] subcommand. | ||||
* | Fix [Bug 2529117] | dkf | 2009-01-29 | 1 | -0/+6 |
| | |||||
* | Apply resolution for [Bug 2529157]. Fix another location in tclBasic.c where | dkf | 2009-01-28 | 1 | -1/+12 |
| | | | | only the objProc case was handled and not the nreProc case. | ||||
* | Fix [Bug 2531577] | dkf | 2009-01-27 | 1 | -7/+13 |
| | |||||
* | Fix [Bug 1028264]: WSACleanup() too early. The fix introduces "late exit ↵ | ferrieux | 2009-01-27 | 1 | -0/+6 |
| | | | | handlers" for similar late process-wide cleanups. | ||||
* | Fix [Bug 2446662]: resync Win behavior on RST with that of unix (EOF). | ferrieux | 2009-01-26 | 1 | -0/+5 |
| | |||||
* | Fix [Bug 2536400] | dkf | 2009-01-26 | 1 | -0/+5 |
| | |||||
* | Added a note that 'zlib push' is reversed by 'chan pop'. | dkf | 2009-01-24 | 1 | -31/+33 |
| | |||||
* | CONSTify TclPrintInstruction and TclpNativeJoinPath (TIP #27) | nijtmans | 2009-01-22 | 1 | -0/+13 |
| | | | | | {unix win} in *.decls is equivalent to {generic} tclGetDate.y, tclDate.c: single internal const decoration | ||||
* | typo | dgp | 2009-01-22 | 1 | -1/+1 |
| | |||||
* | * unix/tcl.m4: Corrected a typo ($(SHLIB_VEERSION) should be ${SHLIB_VERSION}). | Kevin B Kenny | 2009-01-22 | 1 | -0/+6 |
| | | | | * unix/configure: Autoconf 2.59 | ||||
* | * generic/tclIORChan.c (ReflectClose): Fix for [Bug 2458202]. | andreas_kupries | 2009-01-22 | 1 | -0/+8 |
| | | | | | | | * generic/tclIORTrans.c (ReflectClose): Closing a channel may supply NULL for the 'interp'. Test for finalization needs to be different, and one place has to pull the interp out of the channel instead. | ||||
* | * generic/tclStringObj.c: New fix for [Bug 2494093] replaces the | dgp | 2009-01-21 | 1 | -0/+5 |
| | | | | flawed attempt committed 2009-01-09. | ||||
* | Patch 907924 | Kevin B Kenny | 2009-01-20 | 1 | -0/+10 |
| | |||||
* | no message | davygrvy | 2009-01-19 | 1 | -1/+4 |
| | |||||
* | no message | davygrvy | 2009-01-19 | 1 | -0/+10 |
| | |||||
* | correct the commit message | dgp | 2009-01-16 | 1 | -2/+3 |
| | |||||
* | * generic/tcl.h: Bump patchlevel to 8.6b1.1 to distinguish | dgp | 2009-01-16 | 1 | -0/+10 |
| | | | | | | | | * library/init.tcl: CVS snapshots from the 8.6b1 and 8.6b2 releases * unix/configure.in: and to deal with the fact that the HEAD of * win/configure.in: init.tcl will not [source] in Tcl 8.6b1 . * unix/configure: autoconf-2.59 | ||||
* | * generic/tclBasic.c (Tcl_DeleteCommandFromToken): Reverted | dgp | 2009-01-14 | 1 | -0/+9 |
| | | | | | | | | most of the substance of my 2009-01-12 commit. NULLing the objProc field of a Command when deleting it is important so that tests for certain classes of commands don't return false positives when applied to deleted command tokens. Overall change is now just replacement of a false comment with a true one. | ||||
* | fix [tcl-Bug 2502365] Building of head on | nijtmans | 2009-01-13 | 1 | -0/+6 |
| | | | | HPUX is broken when using the native CC | ||||
* | Move [throw] implementation into C. | dkf | 2009-01-13 | 1 | -13/+18 |
| | |||||
* | * generic/tclBasic.c (Tcl_DeleteCommandFromToken): One consequence | dgp | 2009-01-12 | 1 | -0/+13 |
| | | | | | | | | | | | | of the NRE rewrite is that there are now situations where a NULL objProc field in a Command struct is perfectly normal. Removed an outdated comment in Tcl_DeleteCommandFromToken that claimed we use (cmdPtr->objPtr == NULL) as a test of command validity. In fact we use (cmdPtr->flags & CMD_IS_DELETED) to perform that test. Also removed the setting to NULL, since any extension following the advice of the old comment is going to be broken by NRE anyway, and needs to shift to flag-based testing (or stop intruding into such internal matters). Part of [Bug 2486550]. | ||||
* | * generic/tclStringObj.c (STRING_SIZE): Corrected failure to limit | dgp | 2009-01-09 | 1 | -0/+6 |
| | | | | | memory allocation requests to the sizes that can be supported by Tcl's memory allocation routines. [Bug 2494093]. | ||||
* | Fix [Bug 1558654] | dkf | 2009-01-09 | 1 | -0/+5 |
| | |||||
* | * generic/tclStringObj.c (STRING_UALLOC): Added missing parens | dgp | 2009-01-08 | 1 | -0/+6 |
| | | | | | required to get correct results out of things like STRING_UALLOC(num + append). [Bug 2494093]. | ||||
* | Generate errorcodes for more cases. | dkf | 2009-01-08 | 1 | -0/+8 |
| | |||||
* | Added more examples. [Tk Bug 2491235] | dkf | 2009-01-07 | 1 | -0/+2 |
| | |||||
* | Narrow the focus of a failing test so that it succeeds (by only testing that | dkf | 2009-01-07 | 1 | -0/+7 |
| | | | | which is supposed to be tested...) | ||||
* | * tests/stringObj.test: Revise tests that demand a NULL Tcl_ObjType | dgp | 2009-01-06 | 1 | -0/+7 |
| | | | | | | in certain values to construct those values with [testdstring] so there's no lack of robustness depending on the shimmer history of shared literals. | ||||
* | Corrected twiddling in internals of dictionaries so that literals can't get | dkf | 2009-01-06 | 1 | -0/+3 |
| | | | | destroyed. | ||||
* | Fix [Bug 2006879] | dkf | 2009-01-06 | 1 | -0/+2 |
| | |||||
* | Fix [Bug 2489836] | dkf | 2009-01-06 | 1 | -0/+3 |
| | |||||
* | Fix [Bug 2481109] | dkf | 2009-01-06 | 1 | -0/+5 |
| | |||||
* | Make [source] NRE-aware to enable [yield]. [Bug 2412068] | dkf | 2009-01-05 | 1 | -0/+7 |
| | |||||
* | More coding style improvements. | dkf | 2009-01-04 | 1 | -0/+4 |
| | |||||
* | make test case work, correct date of commit in ChangeLog | Kevin B Kenny | 2009-01-03 | 1 | -1/+1 |
| | |||||
* | * library/clock.tcl (tcl::clock::add): Fixed error message formatting | Kevin B Kenny | 2009-01-03 | 1 | -0/+7 |
| | | | | | | in the case where [clock add] is presented with a bad switch. * tests/clock.test (clock-65.1) Added a test case for the above problem [Bug 2481670]. | ||||
* | Fix various mkstemp()-related issues. [Bugs 741967,878333] | dkf | 2009-01-02 | 1 | -0/+9 |
| | |||||
* | * unix/Makefile.in: Set TCLLIBPATH in SHELL_ENV so that targets | dgp | 2008-12-31 | 1 | -0/+5 |
| | | | | like `make shell` have access to builds of bundled packages. | ||||
* | Plug memory leak. | dkf | 2008-12-28 | 1 | -0/+4 |
| | |||||
* | Fix my silly blunders. [Bug 2470237] | dkf | 2008-12-27 | 1 | -0/+3 |
| |