Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added tests for [throw] and [try]. | dkf | 2008-12-16 | 2 | -41/+564 |
| | |||||
* | Fix bug in 'trap' handlers (introduced by DKF's editing originally) | dkf | 2008-12-16 | 1 | -2/+2 |
| | |||||
* | Docs for TIP 329. | dkf | 2008-12-16 | 3 | -0/+155 |
| | |||||
* | First implementation of TIP#329 | dkf | 2008-12-16 | 2 | -19/+222 |
| | |||||
* | Re-fix [2431847] | ferrieux | 2008-12-16 | 1 | -5/+2 |
| | |||||
* | * generic/tcl.h: Add TIP 338 routines to stub table. | dgp | 2008-12-16 | 5 | -7/+43 |
| | | | | | | | * generic/tcl.decls: [Bug 2431338]. * generic/tclDecls.h: make genstubs * generic/tclStubInit.c: | ||||
* | Fix line endings damaged by last commit | patthoyts | 2008-12-15 | 1 | -303/+303 |
| | |||||
* | Fi [Bug 2431847] | dkf | 2008-12-15 | 3 | -3/+17 |
| | |||||
* | Working towards zlib-based channel transforms | dkf | 2008-12-15 | 1 | -177/+340 |
| | |||||
* | * doc/AddErrInfo.3: Documented Tcl_(Set|Get)ErrorLine (TIP 336). | dgp | 2008-12-15 | 8 | -36/+70 |
| | | | | | | | | * 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 'make checkstubs' failure: make TclGetIndexFromObjList static | das | 2008-12-15 | 1 | -4/+7 |
| | |||||
* | Fix [Bug 2380293]. Redefine non-strict decoding to ignore only whitespace. | ferrieux | 2008-12-15 | 4 | -12/+24 |
| | |||||
* | TIP #338 IMPLEMENTATION | dgp | 2008-12-15 | 8 | -228/+172 |
| | | | | | | | | | | | | | | * 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: | ||||
* | add new zlib files | das | 2008-12-14 | 1 | -1/+7 |
| | |||||
* | autoheader-2.59 | das | 2008-12-14 | 1 | -0/+3 |
| | |||||
* | fix warnings | das | 2008-12-14 | 1 | -6/+6 |
| | |||||
* | Added constraints | dkf | 2008-12-14 | 2 | -18/+23 |
| | |||||
* | regen | dkf | 2008-12-14 | 2 | -1774/+2924 |
| | |||||
* | tidy up | dkf | 2008-12-14 | 1 | -150/+150 |
| | |||||
* | Improve build rules on Win w.r.t. zlib | dkf | 2008-12-14 | 6 | -28/+45 |
| | | | | Improve autoconf magic on Unix and Win | ||||
* | Improve docs, start working towards implementing [zlib push] | dkf | 2008-12-13 | 4 | -62/+296 |
| | |||||
* | Added missing bug numbe | dkf | 2008-12-13 | 1 | -1/+1 |
| | |||||
* | Many improvements to docs | dkf | 2008-12-13 | 4 | -44/+354 |
| | |||||
* | change PATH_MAX to MAXPATHLEN (msvc doesn't have PATH_MAX) | nijtmans | 2008-12-12 | 2 | -5/+6 |
| | |||||
* | Document new DST fallback rules. | nijtmans | 2008-12-12 | 3 | -4/+27 |
| | | | | | Fix time change in Eastern Europe (not 3:00 but 4:00 local time) [Bug 2207436] | ||||
* | Added some more docs | dkf | 2008-12-12 | 1 | -3/+18 |
| | |||||
* | regen/fix blunders | dkf | 2008-12-12 | 2 | -17/+84 |
| | |||||
* | Make a bad zlib install less fatal to rest of Tcl for now. | dkf | 2008-12-12 | 4 | -7/+135 |
| | |||||
* | Fix missing CLOEXEC on internal pipes [2417695] and [chan pipe] fds. | ferrieux | 2008-12-12 | 3 | -2/+16 |
| | |||||
* | Let code extract gzip headers | dkf | 2008-12-12 | 2 | -454/+142 |
| | |||||
* | Added test for gzip header access | dkf | 2008-12-12 | 1 | -1/+6 |
| | |||||
* | Fix [Bug 2419061] | dkf | 2008-12-12 | 2 | -622/+410 |
| | |||||
* | TIP #322 IMPLEMENTATION | Kevin B Kenny | 2008-12-12 | 2 | -0/+310 |
| | | | | | * 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 | 5 | -16/+25 |
| | | | | | 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 | 3 | -3/+35 |
| | | | | | | | | * 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 | 2 | -52/+64 |
| | |||||
* | Document the zlib command. Not yet complete! | dkf | 2008-12-11 | 2 | -0/+106 |
| | |||||
* | start of zlib support for windows | dkf | 2008-12-11 | 1 | -1/+17 |
| | |||||
* | regen | dkf | 2008-12-11 | 1 | -6124/+6376 |
| | |||||
* | Slightly less lame configure detection for zlib; still not really right | dkf | 2008-12-11 | 1 | -2/+12 |
| | |||||
* | *** empty log message *** | nijtmans | 2008-12-11 | 2 | -3/+10 |
| | |||||
* | Fixed prototypes | dkf | 2008-12-11 | 1 | -92/+172 |
| | |||||
* | regen | dkf | 2008-12-11 | 2 | -2/+145 |
| | |||||
* | Corrections | dkf | 2008-12-11 | 1 | -15/+13 |
| | |||||
* | Added basic test suite for zlib | dkf | 2008-12-11 | 2 | -3/+110 |
| | |||||
* | Fallback to European time zone DST rules, when the timezone is | nijtmans | 2008-12-11 | 3 | -8/+56 |
| | | | | between 0 and -12 [Bug 2207436]. | ||||
* | add TIP #234 files | das | 2008-12-11 | 1 | -1/+9 |
| | |||||
* | First hack at TIP#234 | dkf | 2008-12-11 | 8 | -12/+2695 |
| | |||||
* | library/tzdata/*: Update from Olson's tzdata2008i. | Kevin B Kenny | 2008-12-10 | 20 | -2038/+1015 |
| | |||||
* | TIP #343 IMPLEMENTATION - A Binary Specifier for [format/scan] | ferrieux | 2008-12-10 | 9 | -16/+68 |
| |