Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * README: Bump version number to 8.6b1 | dgp | 2008-12-19 | 1 | -0/+15 |
| | | | | | | | | | | | | * generic/tcl.h: * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure: | ||||
* | * tests/chanio.test: Replaced [chan event] handlers that | dgp | 2008-12-19 | 1 | -0/+5 |
| | | | | | | returned TCL_RETURN return code, with more conventional ones that return TCL_OK to suppress otherwise strange writes of outdated $::errorInfo values to stderr. [Bug 2444274]. | ||||
* | * win/configure.in: | Kevin B Kenny | 2008-12-19 | 1 | -0/+6 |
| | | | | | * win/Makefile.in: Added build of packages in the 'pkgs/' directory. * win/configure: Autoconf 2.59 | ||||
* | nmake build file support for zlib | patthoyts | 2008-12-19 | 1 | -0/+4 |
| | |||||
* | * generic/tclIO.c (Tcl_CloseEx,CloseWrite,CloseChannelPart,ChanCloseHalf): | andreas_kupries | 2008-12-18 | 1 | -0/+14 |
| | | | | | | | | | | | | | Rewrite the half-close to properly flush the channel, like is done for a full close, going through FlushChannel, and using the flag BG_FLUSH_SCHEDULED (async flush during close). New functions CloseWrite, CloseChannelPart, new flag CHANNEL_CLOSEDWRITE. * tests/chanio.test (chanio-28.[67]): Reactivated these tests. Replaced tclsh -> [interpreter] to get correct executable for the pipe process, and added after cancel to kill the fail timers when we are done. Removed the explicits calls to [flush], now that [close] handles this correctly. | ||||
* | * generic/tclExecute.c: Disabled apparently faulty assertion. | dgp | 2008-12-18 | 1 | -0/+5 |
| | | | | [Bug 2415422]. | ||||
* | Autoconf wizardry! | dkf | 2008-12-18 | 1 | -0/+1 |
| | |||||
* | Slight improvement of changelog message | dkf | 2008-12-18 | 1 | -1/+3 |
| | |||||
* | Import of zlib 1.2.3 | dkf | 2008-12-18 | 1 | -0/+3 |
| | |||||
* | Compressing and decompressing channel transformation support. | dkf | 2008-12-18 | 1 | -17/+15 |
| | | | | Note that there may be "quality-of-implementation" issues left... | ||||
* | VOID -> void | nijtmans | 2008-12-18 | 1 | -0/+8 |
| | |||||
* | TIP #332 IMPLEMENTATION - Half-Close for Bidirectional Channels | ferrieux | 2008-12-18 | 1 | -0/+17 |
| | |||||
* | don't use ckfree((void *)...) but | nijtmans | 2008-12-17 | 1 | -0/+1 |
| | | | | ckfree((char *)...) | ||||
* | General improvements. | dkf | 2008-12-17 | 1 | -1/+6 |
| | |||||
* | * unix/Makefile.in: Modify the distclean-packages target so | dgp | 2008-12-17 | 1 | -0/+3 |
| | | | | that empty build directories are deleted. | ||||
* | move variable "length" inside if() | nijtmans | 2008-12-17 | 1 | -0/+7 |
| | | | | | don't use ckfree((void *)...) but ckfree((char *)...) | ||||
* | Fix [Bug 2433936] | dkf | 2008-12-17 | 1 | -0/+6 |
| | |||||
* | * unix/Makefile.in: Add build support for collections of TEA | dgp | 2008-12-17 | 1 | -0/+8 |
| | | | | | | | * unix/configure.in: packages found under the pkgs directory. [Patch 1163406]. Still needs porting to Windows. * unix/configure: autoconf-2.59 | ||||
* | Removed unused flag. | dkf | 2008-12-17 | 1 | -13/+17 |
| | |||||
* | eliminate -Wwrite-strings warnings in enable-threads build. | nijtmans | 2008-12-16 | 1 | -0/+8 |
| | | | | use TclNewLiteralStringObj() | ||||
* | Added tests for [throw] and [try]. | dkf | 2008-12-16 | 1 | -0/+1 |
| | |||||
* | Docs for TIP 329. | dkf | 2008-12-16 | 1 | -0/+1 |
| | |||||
* | First implementation of TIP#329 | dkf | 2008-12-16 | 1 | -0/+8 |
| | |||||
* | * generic/tcl.h: Add TIP 338 routines to stub table. | dgp | 2008-12-16 | 1 | -0/+8 |
| | | | | | | | * generic/tcl.decls: [Bug 2431338]. * generic/tclDecls.h: make genstubs * generic/tclStubInit.c: | ||||
* | Fi [Bug 2431847] | dkf | 2008-12-15 | 1 | -0/+5 |
| | |||||
* | * doc/AddErrInfo.3: Documented Tcl_(Set|Get)ErrorLine (TIP 336). | dgp | 2008-12-15 | 1 | -0/+8 |
| | | | | | | | | * doc/CrtCommand.3: Various other documentation updates to * doc/CrtInterp.3: reflect the lack of access to Tcl_Interp fields * doc/Interp.3: by default. * doc/SetResult.3: * doc/tcl.decls: | ||||
* | Fix [Bug 2380293]. Redefine non-strict decoding to ignore only whitespace. | ferrieux | 2008-12-15 | 1 | -0/+6 |
| | |||||
* | TIP #338 IMPLEMENTATION | dgp | 2008-12-15 | 1 | -1/+17 |
| | | | | | | | | | | | | | | * doc/AppInit.c: Made routines Tcl_SetStartupScript and * doc/Tcl_Main.3: Tcl_GetStartupScript public. Removed all * generic/tcl.h: internal stub access to Tcl*Startup* routines, * generic/tclInt.decls: and removed their implementations. Their * generic/tclMain.c: function can now be completely performed with the new public interface. *** POTENTIAL INCOMPATIBILITY for callers of the internal Tcl*Startup* routines. *** * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c: | ||||
* | Added constraints | dkf | 2008-12-14 | 1 | -0/+3 |
| | |||||
* | tidy up | dkf | 2008-12-14 | 1 | -150/+150 |
| | |||||
* | Improve build rules on Win w.r.t. zlib | dkf | 2008-12-14 | 1 | -0/+8 |
| | | | | Improve autoconf magic on Unix and Win | ||||
* | Improve docs, start working towards implementing [zlib push] | dkf | 2008-12-13 | 1 | -0/+1 |
| | |||||
* | Added missing bug numbe | dkf | 2008-12-13 | 1 | -1/+1 |
| | |||||
* | Many improvements to docs | dkf | 2008-12-13 | 1 | -5/+13 |
| | |||||
* | change PATH_MAX to MAXPATHLEN (msvc doesn't have PATH_MAX) | nijtmans | 2008-12-12 | 1 | -0/+1 |
| | |||||
* | Document new DST fallback rules. | nijtmans | 2008-12-12 | 1 | -1/+7 |
| | | | | | Fix time change in Eastern Europe (not 3:00 but 4:00 local time) [Bug 2207436] | ||||
* | Make a bad zlib install less fatal to rest of Tcl for now. | dkf | 2008-12-12 | 1 | -0/+6 |
| | |||||
* | Fix missing CLOEXEC on internal pipes [2417695] and [chan pipe] fds. | ferrieux | 2008-12-12 | 1 | -0/+5 |
| | |||||
* | Let code extract gzip headers | dkf | 2008-12-12 | 1 | -0/+2 |
| | |||||
* | Fix [Bug 2419061] | dkf | 2008-12-12 | 1 | -0/+5 |
| | |||||
* | TIP #322 IMPLEMENTATION | Kevin B Kenny | 2008-12-12 | 1 | -0/+7 |
| | | | | | * doc/NRE.3 (new file): Added documentation of the published API for Non-Recursive Evaluation (NRE). | ||||
* | Eliminate warning: different 'const' qualifiers | nijtmans | 2008-12-11 | 1 | -0/+8 |
| | | | | | with msvc compiler. A few more 'const' optimizations. fix Windows build (msvc) for TIP #234 implementation | ||||
* | * generic/tclIO.c (SetChannelFromAny and related): Modified the | andreas_kupries | 2008-12-11 | 1 | -0/+9 |
| | | | | | | | | * tests/io.test: internal representation of the tclChannelType to contain not only the ChannelState pointer, but also a reference to the interpreter it was made in. Invalidate and recompute the internal representation when it is used in a different interpreter (Like cmdName intrep's). Added testcase. [Bug 2407783]. | ||||
* | Factor out the code to turn zlib errors into Tcl errors. | dkf | 2008-12-11 | 1 | -3/+7 |
| | |||||
* | Document the zlib command. Not yet complete! | dkf | 2008-12-11 | 1 | -0/+4 |
| | |||||
* | *** empty log message *** | nijtmans | 2008-12-11 | 1 | -0/+6 |
| | |||||
* | Added basic test suite for zlib | dkf | 2008-12-11 | 1 | -3/+6 |
| | |||||
* | Fallback to European time zone DST rules, when the timezone is | nijtmans | 2008-12-11 | 1 | -0/+7 |
| | | | | between 0 and -12 [Bug 2207436]. | ||||
* | First hack at TIP#234 | dkf | 2008-12-11 | 1 | -1/+10 |
| | |||||
* | library/tzdata/*: Update from Olson's tzdata2008i. | Kevin B Kenny | 2008-12-10 | 1 | -0/+4 |
| |