summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix line endings damaged by last commitpatthoyts2008-12-151-303/+303
|
* Fi [Bug 2431847]dkf2008-12-153-3/+17
|
* Working towards zlib-based channel transformsdkf2008-12-151-177/+340
|
* * doc/AddErrInfo.3: Documented Tcl_(Set|Get)ErrorLine (TIP 336).dgp2008-12-158-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 staticdas2008-12-151-4/+7
|
* Fix [Bug 2380293]. Redefine non-strict decoding to ignore only whitespace.ferrieux2008-12-154-12/+24
|
* TIP #338 IMPLEMENTATIONdgp2008-12-158-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 filesdas2008-12-141-1/+7
|
* autoheader-2.59das2008-12-141-0/+3
|
* fix warningsdas2008-12-141-6/+6
|
* Added constraintsdkf2008-12-142-18/+23
|
* regendkf2008-12-142-1774/+2924
|
* tidy updkf2008-12-141-150/+150
|
* Improve build rules on Win w.r.t. zlibdkf2008-12-146-28/+45
| | | | Improve autoconf magic on Unix and Win
* Improve docs, start working towards implementing [zlib push]dkf2008-12-134-62/+296
|
* Added missing bug numbedkf2008-12-131-1/+1
|
* Many improvements to docsdkf2008-12-134-44/+354
|
* change PATH_MAX to MAXPATHLEN (msvc doesn't have PATH_MAX)nijtmans2008-12-122-5/+6
|
* Document new DST fallback rules.nijtmans2008-12-123-4/+27
| | | | | Fix time change in Eastern Europe (not 3:00 but 4:00 local time) [Bug 2207436]
* Added some more docsdkf2008-12-121-3/+18
|
* regen/fix blundersdkf2008-12-122-17/+84
|
* Make a bad zlib install less fatal to rest of Tcl for now.dkf2008-12-124-7/+135
|
* Fix missing CLOEXEC on internal pipes [2417695] and [chan pipe] fds.ferrieux2008-12-123-2/+16
|
* Let code extract gzip headersdkf2008-12-122-454/+142
|
* Added test for gzip header accessdkf2008-12-121-1/+6
|
* Fix [Bug 2419061]dkf2008-12-122-622/+410
|
* TIP #322 IMPLEMENTATIONKevin B Kenny2008-12-122-0/+310
| | | | | * doc/NRE.3 (new file): Added documentation of the published API for Non-Recursive Evaluation (NRE).
* Eliminate warning: different 'const' qualifiersnijtmans2008-12-115-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 theandreas_kupries2008-12-113-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.dkf2008-12-112-52/+64
|
* Document the zlib command. Not yet complete!dkf2008-12-112-0/+106
|
* start of zlib support for windowsdkf2008-12-111-1/+17
|
* regendkf2008-12-111-6124/+6376
|
* Slightly less lame configure detection for zlib; still not really rightdkf2008-12-111-2/+12
|
* *** empty log message ***nijtmans2008-12-112-3/+10
|
* Fixed prototypesdkf2008-12-111-92/+172
|
* regendkf2008-12-112-2/+145
|
* Correctionsdkf2008-12-111-15/+13
|
* Added basic test suite for zlibdkf2008-12-112-3/+110
|
* Fallback to European time zone DST rules, when the timezone isnijtmans2008-12-113-8/+56
| | | | between 0 and -12 [Bug 2207436].
* add TIP #234 filesdas2008-12-111-1/+9
|
* First hack at TIP#234dkf2008-12-118-12/+2695
|
* library/tzdata/*: Update from Olson's tzdata2008i.Kevin B Kenny2008-12-1020-2038/+1015
|
* TIP #343 IMPLEMENTATION - A Binary Specifier for [format/scan]ferrieux2008-12-109-16/+68
|
* Implement TIP#341.dkf2008-12-104-48/+88
|
* Set the file channel to binary for size comparison on windowspatthoyts2008-12-091-3/+4
|
* restore source and binary compatibilitynijtmans2008-12-094-10/+29
| | | | | for TIP #337 implementation. (when it's _that_ simple, there is no excuse not to do it) :-)
* TIP #337 IMPLEMENTATIONdgp2008-12-0913-73/+123
| | | | | | | | | | | | | | | | | | | * doc/BackgdErr.3: Converted internal routine * doc/interp.n: TclBackgroundException() into public routine * generic/tcl.decls: Tcl_BackgroundException(). * generic/tclEvent.c: * generic/tclInt.decls: * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclStubInit.c: * generic/tclIO.c: Update callers. * generic/tclIOCmd.c: * generic/tclInterp.c: * generic/tclTimer.c: *** POTENTIAL INCOMPATIBILITY only for extensions using the converted internal routine ***
* A bit more readability refactoring.dkf2008-12-092-278/+300
|
* Tcl_MacOSXOpenVersionedBundleResources: Fix leak, simplify logicdas2008-12-071-28/+36
|