summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* New DST rule for Bangladesh (Olson's tzdata2009i)Kevin B Kenny2009-06-081-0/+5
|
* Fix docbug.dkf2009-06-071-0/+4
|
* * generic/tclExecute.c: Replace dynamically-initialized table withdgp2009-06-021-0/+4
| | | | | a table of static constants in the lookup table for exponent operator computations that fit in a 64 bit integer result.
* * generic/tclExecute.c: Corrected implementations and selectiondgp2009-06-021-0/+5
| | | | logic of the INST_EXPON instruction to fix [Bug 2798543].
* * tests/expr.test: Added many tests demonstrating the brokendgp2009-06-011-1/+6
| | | | cases of [Bug 2798543].
* Applied Olson's tzdata2009hKevin B Kenny2009-05-301-0/+5
|
* * library/platform/platform.tcl: Fixed handling of cpu ia64,andreas_kupries2009-05-291-0/+7
| | | | | | * library/platform/pkgIndex.tcl: taking ia64_32 into account * unix/Makefile.in: now. Bumped version to 1.0.5. Updated the * win/Makefile.in: installation commands.
* Ascribe due credit in ChangeLog.ferrieux2009-05-261-1/+1
|
* Fixed documentation of the right-associativity of the ** operator.ferrieux2009-05-261-0/+5
|
* Added more introspection: ability to look up namespace of an object.dkf2009-05-151-0/+6
|
* (With apologies to Ghostbusters...)dkf2009-05-121-1/+1
|
* "There's something very important I forgot to tell you."dkf2009-05-121-0/+3
| | | | | | | | | | | | "What?" "Don't nest the vwaits." "Why?" "It would be bad." "I'm fuzzy on the whole good/bad thing. What do you mean, 'bad'?" "Try to imagine all processing as you know it stopping gradually and every stack frame in your process spewing their guts at you." "Stack space exhaustion." "Right. That's bad. Okay. All right. Important safety tip."
* Make our mkstemp() replacement build on IRIX 6.5.dkf2009-05-121-0/+5
|
* Oops, forgot to do a ChangeLog entry for the fix for [Bug 2414858].dkf2009-05-081-0/+5
|
* Fix [Bug 2788468].dkf2009-05-081-15/+20
|
* * generic/tclObj.c (Tcl_GetCommandFromObj): fix for bug [2785893],Miguel Sofer2009-05-081-1/+5
| | | | | insure that a command in a deleted namespace cannot be found through a cached name.
* * generic/tclBasic.c: Let coroutines start with a much smallerMiguel Sofer2009-05-081-0/+6
| | | | | * generic/tclCompile.h: stack: 200 words (previously was 2000, * generic/tclExecute.c: the same as interps)
* Fix [Bug 1513659].dkf2009-05-071-2/+9
|
* * generic/tclCmdMZ.c: Improve overflow error message fromdgp2009-05-061-0/+3
| | | | [string repeat]. [Bug 2582327]
* * tests/interp.test: interp-20.50 test for Bug 2486550.dgp2009-05-061-0/+4
|
* Corrected changelog entrydkf2009-05-051-1/+1
|
* Stop deletion of support namespaces leading to a potential crash.dkf2009-05-041-0/+7
|
* Fix [Bug 2538432] through clarification.dkf2009-05-031-0/+6
|
* * generic/tclBasic.c (TclObjInvoke): Make sure that a null objProcMiguel Sofer2009-04-301-0/+5
| | | | is not used, use Tcl_NRCallObjProc instead [Bug 2486550].
* Fix 64-bit detection for zlib on Win64nijtmans2009-04-301-0/+5
|
* Revert last commit which fails to build with msvc2005 and msvc6patthoyts2009-04-291-5/+0
|
* Fix [Bug 2651823].dkf2009-04-291-0/+5
|
* * unix/tcl.m4, unix/configure (SC_CONFIG_CFLAGS): harden the checkhobbs2009-04-281-0/+5
| | | | to add _r to CC on AIX with threads.
* Fix examples. [Bug 2780680]dkf2009-04-271-6/+12
|
* Reset internal INTERP_ALTERNATE_WRONG_ARGSnijtmans2009-04-271-0/+6
| | | | | flag inside the Tcl_WrongNumArgs function, so the caller no longer has to do the reset.
* Don't chmod/exec installManPage. [Patch 2769530]stwo2009-04-241-0/+5
|
* Removed newline appended to POST data.patthoyts2009-04-191-0/+8
| | | | Added tests to check that the data provided by a POST is as stated in the content-length [Bug 2715421]
* Doc improvements.dkf2009-04-151-0/+4
|
* * library/tzdata/Asia/Karachi: Updated rules for Pakistan SummerKevin B Kenny2009-04-141-0/+5
| | | | Time (Olson's tzdata2009f)
* Clarify the rules for resolution of what forwarded methods forward to.dkf2009-04-111-0/+8
|
* D'ohdas2009-04-111-1/+1
|
* Forgot to add changelog for http commitpatthoyts2009-04-101-0/+8
|
* * unix/tclUnixChan.c: TclUnixWaitForFile(): use FD_* macrosdas2009-04-101-0/+4
| | | | | * macosx/tclMacOSXNotify.c: to manipulate select masks (Cassoff). [Bug 1960647]
* * unix/tclLoadDyld.c: use RTLD_GLOBAL instead of RTLD_LOCAL.das2009-04-101-0/+3
| | | | [Bug 1961211]
* typodas2009-04-101-2/+2
|
* * macosx/tclMacOSXNotify.c: revise CoreFoundation notifier to allowdas2009-04-101-2/+26
| | | | | | | | | | | | | | | | | | * unix/tclUnixChan.c: embedding into applications that * unix/tclUnixEvent.c: already have a CFRunLoop running and want to run the tcl event loop via Tcl_ServiceModeHook(TCL_SERVICE_ALL). * macosx/tclMacOSXNotify.c: add CFRunLoop based Tcl_Sleep() and * unix/tclUnixChan.c: TclUnixWaitForFile() implementations * unix/tclUnixEvent.c: and disable select() based ones in CoreFoundation builds. * unix/tclUnixNotify.c: simplify, sync with tclMacOSXNotify.c. * generic/tclInt.decls: add TclMacOSXNotifierAddRunLoopMode() * generic/tclIntPlatDecls.h: internal API, regen. * generic/tclStubInit.c:
* * macosx/tclMacOSXBundle.c: on Mac OS X 10.4 and later, replacedas2009-04-101-0/+5
| | | | deprecated NSModule API by dlfcn API.
* Fix for immediate problem in [Bug 2089279].dkf2009-04-101-14/+20
|
* Specific check for [Bug 26245326]patthoyts2009-04-101-0/+5
| | | | | This bug is caused by receiving a partial HTTP response line which caused premature switching of the state in the client package before we received the whole line.
* Olson's tzdata2009eKevin B Kenny2009-04-091-0/+5
|
* * library/http/http.tcl: Handle incomplete lines in thedgp2009-04-091-0/+5
| | | | "connecting" state. Thanks to Sergei Golovan. [Bug 26245326]
* * library/platform/platform.tcl: Extended the darwin sections toandreas_kupries2009-04-081-0/+10
| | | | | | | | | * library/platform/pkgIndex.tcl: add a kernel version number to * unix/Makefile.in: the identifier for anything from Leopard (10.5) * win/Makefile.in: on up. Extended patterns for same. Extended cpu * doc/platform.n: recognition for 64bit Tcl running on a 32bit kernel on a 64bit processor (By Daniel Steffen). Bumped version to 1.0.4. Updated Makefiles.
* * library/tcltest/tcltest.tcl: Converted [eval]s (some unsafe!) todgp2009-04-081-0/+7
| | | | | | * library/tcltest/pkgIndex.tcl: {*} in tcltest package. [Bug 2570363] * unix/Makefile.in: => tcltest 2.3.1 * win/Makefile.in:
* * generic/tclStringObj.c: Correction so that value ofdgp2009-04-071-0/+5
| | | | TCL_GROWTH_MIN_ALLOC is everywhere expressed in bytes as comment claims.
* Fix [Bug 1910136].dkf2009-04-041-7/+12
|