summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | * generic/tclStrToD.c: Tidy up code so that more #ifdef-fery isdkf2010-12-072-1160/+1178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | quarantined at the front of the file and function headers follow the modern Tcl style.
| * | | | | | | | | | | | | [Bug 3129448]: possible over-allocation on 64-bit platformsnijtmans2010-12-064-21/+26
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | [Patch #3116490] cross-compile support for unixnijtmans2010-12-051-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | [Patch #3116490] cross-compile support for unixnijtmans2010-12-053-14/+51
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * generic/tclUtil.c (TclReToGlob): add extra check for multiplehobbs2010-12-032-6/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | inner *s that leads to poor recursive glob matching, defer to original RE instead. tclbench RE var backtrack.
| * | | | | | | | | | | | | silence gcc warning when using -Wwrite-stringsnijtmans2010-12-037-24/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | silence gcc warning for non-IEEE platforms [Patch #3116490] cross-compile Tcl mingw32 on unix. This makes it possible to cross-compile Tcl/Tk for Windows (either 32-bit or 64-bit) out-of-the-box on UNIX, using mingw-w64 build tools.
| * | | | | | | | | | | | | * generic/tclStrToD.c (SetPrecisionLimits, TclDoubleDigits):Kevin B Kenny2010-12-012-4/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added meaningless initialization of 'i', 'ilim' and 'ilim1' to silence warnings from the C compiler about possible use of uninitialized variables, Added a panic to the 'switch' that assigns them, to assert that the 'default' case is impossible. [Bug 3124675]
| * | | | | | | | | | | | | Allow Tcl_Panic() to enter the debugger on win32nijtmans2010-12-013-13/+11
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | fix gcc 64-bit warnings: cast from pointer to integer of different sizenijtmans2010-12-016-22/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix gcc(-4.5.2) warning: 'static' is not at beginning of declaration
| * | | | | | | | | | | | | * generic/tclInt.decls, generic/tclInt.h, generic/tclIntDecls.h:hobbs2010-11-306-25/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclStubInit.c: TclFormatInt restored at slot 24 * generic/tclUtil.c (TclFormatInt): restore TclFormatInt func from 2005-07-05 macro-ization. Benchmarks indicate it is faster, as a key int->string routine (e.g. int-indexed arrays).
| * | | | | | | | | | | | | ChangeLog typo.ferrieux2010-11-291-1/+1
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Patch by Miguel, providing a [::tcl::unsupported::inject coroname command ↵ferrieux2010-11-292-2/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | args], which prepends ("injects") arbitrary code to a suspented coro's future resumption. Neat for debugging complex coros without heavy instrumentation.
| * | | | | | | | | | | | | added missing casts that MSVC complained about and deleted unused variableKevin B Kenny2010-11-292-7/+6
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | 2010-11-29 Kevin B. Kenny <kennykb@acm.org>Kevin B Kenny2010-11-2814-410/+3559
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.decls: * generic/tclInt.h: * generic/tclStrToD.c: * generic/tclTest.c: * generic/tclTomMath.decls: * generic/tclUtil.c: * tests/util.test: * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc: Rewrite of Tcl_PrintDouble and TclDoubleDigits that (a) fixes a severe performance problem with floating point shimmering reported by Karl Lehenbauer, (b) allows TclDoubleDigits to generate the digit strings for 'e' and 'f' format, so that it can be used for tcl_precision != 0 (and possibly later for [format]), (c) fixes [Bug 3120139] by making TclPrintDouble inherently locale-independent, (d) adds test cases to util.test for correct rounding in difficult cases of TclDoubleDigits where fixed- precision results are requested. (e) adds test cases to util.test for the controversial aspects of [Bug 3105247]. As a side effect, two more modules from libtommath (bn_mp_set_int.c and bn_mp_init_set_int.c) are brought into the build, since the new code uses them.
| * | | | | | | | | | | | | * tests/chanio.test, tests/iogt.test, tests/ioTrans.test: Convert moredkf2010-11-244-1303/+1378
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tests to tcltest2 and factor them to be easier to understand.
| * | | | | | | | | | | | | More conversion of tcltest1 tests to tcltest2dkf2010-11-211-483/+521
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * tests/chanio.test: Converted many tests to tcltest2 by marking thedkf2010-11-202-1172/+1333
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | setup and cleanup parts as such.
| * | | | | | | | | | | | | fix gcc warnings: unused variable 'registration'nijtmans2010-11-194-7/+13
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Tcl_Panic already writes a newline at the end, so the caller doesn't have to ↵nijtmans2010-11-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | do that
| * | | | | | | | | | | | | Set NO_VIZ=1 when zlib is compiled in libtcl,nijtmans2010-11-183-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this resolves compiler warnings in 64-bit and static builds.
| * | | | | | | | | | | | | [FRQ 491789]: "setargv() doesn't support a unicode cmdline"nijtmans2010-11-183-54/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | now implemented for cygwin and mingw32 too. No longer disable tests Tcl_Main-1.4 and 1.6 on Windows, because those now work on all supported platforms.
| * | | | | | | | | | | | | * doc/file.n: [Bug 3111298]: Typofix.dkf2010-11-182-2/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * tests/oo.test: [Bug 3111059]: Added testing that neatly trapped thisdkf2010-11-182-11/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | issue.
| * | | | | | | | | | | | | * generic/tclNamesp.c: fix leak due to bad looping construct,Miguel Sofer2010-11-181-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Bug 3111059] (Correct fix this time around)
| * | | | | | | | | | | | | * generic/tclNamesp.c: fix leak due to bad looping construct,Miguel Sofer2010-11-182-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Bug 3111059]
| * | | | | | | | | | | | | [FRQ 491789]: "setargv() doesn't support a unicode cmdline" now implemented ↵nijtmans2010-11-173-2/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for mingw-w64
| * | | | | | | | | | | | | Bring compilation under mingw-w64 a bit closer to reality (but don't break ↵nijtmans2010-11-171-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mingw32 build!)
| * | | | | | | | | | | | | [Bug #3110161]: Extensions using TCHAR don't compile on VS2005 SP1nijtmans2010-11-162-1/+7
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Bring compilation under mingw-w64 a bit closer to realitynijtmans2010-11-165-32/+46
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * doc/interp.n: [3081184] TIP #378.andreas_kupries2010-11-159-57/+352
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/tclvars.n: Performance fix for TIP #280. * generic/tclBasic.c: * generic/tclExecute.c: * generic/tclInt.h: * generic/tclInterp.c: * tests/info.test: * tests/interp.test:
| * | | | | | | | | | | | | reverted previous commit: it has effect on the Windows consolenijtmans2010-11-152-29/+33
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Eliminate use of the function Tcl_WinTCharToUtf in generic codenijtmans2010-11-152-33/+29
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * changes: Updates for 8.6b2 release.andreas_kupries2010-11-102-1/+15
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Fix [Bug 3105999]; deallocate temporary structure.dkf2010-11-092-5/+14
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Clarify the tests so that what is being tested is in the body... :-)dkf2010-11-091-7/+10
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * tests/oo.test: Various tests for memory leaks.dkf2010-11-092-1/+39
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Revert previous commit at request of KBK.dkf2010-11-092-23/+17
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Added test case for [Bug #3105247] -NaN?nijtmans2010-11-092-1/+9
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | Add missing 'objs' verb in error message.ferrieux2010-11-081-2/+4
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | fix TCL_ASCII_MAIN usage, as the name suggestsnijtmans2010-11-052-5/+12
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * generic/tclMain.c: Added missing conditional on _WIN32 around codeKevin B Kenny2010-11-042-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that messes around with the definition of _UNICODE, to correct a badly broken Unix build from Jan's last commit.
| * | | | | | | | | | | | | [FRQ 491789]: "setargv() doesn't support a unicode cmdline" implemented for ↵nijtmans2010-11-049-24/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tcl on MSVC++
| * | | | | | | | | | | | | some more speedups to socket.testrmax2010-11-042-6/+7
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | avoid having to wait for some child processes to time out after all tests ↵rmax2010-11-041-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | have been run
| * | | | | | | | | | | | | Rework some of the tests to speed them up by avoiding (supposedly)rmax2010-11-042-29/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unneeded [after]s.
| * | | | | | | | | | | | | reorder the constraint list per test for clearer make test output of skipped ↵rmax2010-11-041-35/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tests
| * | | | | | | | | | | | | Minor change: Added missing .PHONY marker for install-headersdkf2010-11-041-2/+2
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * tests/socket.test: Run the socket tests three times with thermax2010-11-042-154/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | address family set to any, inet, and inet6 respectively. Use constraints to skip the tests if a family is found to be unsupported or not configured on the local machine. Adjust the tests to dynamically adapt to the address family that is being tested.
| * | | | | | | | | | | | | [Patch 3101127]: Installer Improvements.stwo2010-11-043-132/+548
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | * tests/error.test (error-19.13): Another variation on testing fordkf2010-11-042-1/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | issues in [try] compilation.