summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* more changes for Tcl 8.4.8dgp2004-11-151-2/+8
|
* * generic/tclCmdMZ.c (Tcl_TraceObjCmd): Fixed Bug 1065378 which faileddgp2004-11-153-88/+51
| | | | | | * tests/trace.test (trace-33.1): to permit a variable trace created with [trace variable] to be destroyed with [trace remove]. Thanks to Keith Vetter for the report.
* * library/init.tcl: Made [unknown] robust in the case thatdgp2004-11-132-1/+15
| | | | | either of the variables ::errorInfo or ::errorCode gets unset. [Bug 1063707]
* * generic/tclEncoding.c (TableFromUtfProc): correct crashhobbs2004-11-122-2/+18
| | | | condition when TCL_UTF_MAX == 6. [Bug 1004065]
* * doc/clock.n:das2004-11-125-25/+46
| | | | | | | | | * doc/registry.n: * doc/upvar.n: fixed *roff errors uncovered by running 'make html'. * tools/tcltk-man2html.tcl: added faked support for bullet point lists, i.e. *nroff ".IP \(bu" syntax. Synced other changes from HEAD.
* * tests/fCmd.test:das2004-11-111-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * unix/tclUnixFCmd.c (TraverseUnixTree): added option to rewind() the readdir() loop whenever the source hierarchy has been modified by traverseProc (e.g. by deleting files); this is required to ensure complete traversal of the source hierarchy on certain filesystems like HFS+. Added test for failing recursive delete on Mac OS X that was due to this. [Bug 1034337] * generic/tclListObj.c (Tcl_ListObjReplace): use memmove() instead of manual copy loop to shift list elements. Decreases time spent in Tcl_ListObjReplace() from 5.2% to 1.7% of overall runtime of tclbench on a ppc 7455 (i.e. 200% speed increase). [Patch 1064243] * generic/tclHash.c: hoisted some constant pointer dereferences out of loops to eliminate redundant loads that the gcc optimizer didn't deal with. Decreases time spend in Tcl_FindHashEntry() by 10% over a full run of the tcl testuite on a ppc 7455. [Patch 1064243] * tests/fileName.test: * tests/fileSystem.test: * tests/io.test: * tests/tcltest.test: fixed bugs causing failures when running tests with -tmpdir arg not set to working dir. * macosx/Makefile: corrected path to html help inside framework. Prevent parallel make from building several targets at the same time.
* * generic/tclListObj.c (Tcl_ListObjReplace): use memmove() insteaddas2004-11-112-17/+12
| | | | | | | | | | | of manual copy loop to shift list elements. Decreases time spent in Tcl_ListObjReplace() from 5.2% to 1.7% of overall runtime of tclbench on a ppc 7455 (i.e. 200% speed increase). [Patch 1064243] * generic/tclHash.c: hoisted some constant pointer dereferences out of loops to eliminate redundant loads that the gcc optimizer didn't deal with. Decreases time spend in Tcl_FindHashEntry() by 10% over a full run of the tcl testuite on a ppc 7455. [Patch 1064243]
* * macosx/Makefile: corrected path to html help inside framework.das2004-11-111-2/+4
| | | | | Prevent parallel make from building several targets at the same time.
* * tests/fileName.test:das2004-11-114-7/+8
| | | | | | | * tests/fileSystem.test: * tests/io.test: * tests/tcltest.test: fixed bugs causing failures when running tests with -tmpdir arg not set to working dir.
* * tests/fCmd.test:das2004-11-112-34/+59
| | | | | | | | | * unix/tclUnixFCmd.c (TraverseUnixTree): added option to rewind() the readdir() loop whenever the source hierarchy has been modified by traverseProc (e.g. by deleting files); this is required to ensure complete traversal of the source hierarchy on certain filesystems like HFS+. Added test for failing recursive delete on Mac OS X that was due to this. [Bug 1034337]
* Clarify return code documentation. [Bug 1062647]dkf2004-11-092-7/+24
|
* * changes: Updates for Tcl 8.4.8 release.dgp2004-11-042-1/+65
|
* niggly test suite fixesdgp2004-11-032-5/+4
|
* 2004-11-02 Don Porter <dgp@users.sourceforge.net>dgp2004-11-023-5/+74
| | | | | | | | * library/tcltest/tcltest.tcl: Corrected some misleading * tests/tcltest.test (tcltest-26.1,2): displays of ::errorInfo and ::errorCode information when the -setup, -body, and/or -cleanup scripts return an unexpected return code. Thanks to Robert Seeger for the fix. [RFE 1017151].
* Final fix for NaN != NaN bug. Thanks to Miguel Sofer for his improved patch.dkf2004-11-023-14/+63
| | | | [Bug 761471]
* Add synopsis for Tcl_GetChannelMode. [Bug 1058446]dkf2004-11-022-2/+9
|
* Make [info globals ::foo] work. [Bug 1057461]dkf2004-10-313-3/+21
|
* removed erroneous comment [Bug 1029518]Miguel Sofer2004-10-302-7/+6
|
* * library/tcltest/tcltest.tcl: Correct reaction to errors in thedgp2004-10-303-5/+13
| | | | | obsolete processCmdLineArgsHook. [Bug 1055673] * library/tcltest/pkgIndex.tcl: Bump to tcltest 2.2.7
* * generic/tclAlloc.c: Fixed [Tcl SF Bug 1030548], aandreas_kupries2004-10-285-8/+17
| | | | | | | * generic/tclThreadAlloc.c: threaded debug build on Windows * win/tclWinThrd.c: now works again. Had to touch Unix * unix/tclUnixThrd.c: as well. Basic patch by Kevin, with modifications by myself.
* * README: Bumped patch level to 8.4.8 to preparedgp2004-10-2810-16/+29
| | | | | | | | | | | | * generic/tcl.h: for next patch release. * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf (2.13) * win/configure:
* added CONST to TclpLocaltime and TclpGmtime param throughoutKevin B Kenny2004-10-286-25/+37
|
* D'oh!dgp2004-10-281-2/+2
|
* * tests/socket.test (socket-13.1): Balanced [makeFile] anddgp2004-10-283-12/+16
| | | | | | | | [removeFile] commands. * generic/tclCmdAH.c (Tcl_FormatObjCmd): Restored missing line from yesterdays' 868486 backport that caused failed alloc's on LP64 systems.
* * tests/appendComp.test: Backport test suite fixes of errorsdgp2004-10-2812-302/+325
| | | | | | | | | | | | | * tests/autoMkindex.test: revealed by -singleproc 1 -debug 1 * tests/exec.test: options to make test. * tests/execute.test: * tests/interp.test: * tests/io.test: * tests/namespace.test: * tests/regexpComp.test: * tests/stringComp.test: * tests/unixInit.test: * tests/winPipe.test:
* fixed format-19.1 for 64 bit machinesKevin B Kenny2004-10-271-3/+3
|
* backport fixes for 868489 and 1026125Kevin B Kenny2004-10-274-54/+33
|
* Finished user-level documentation backportdkf2004-10-2714-71/+276
|
* Yet more doc update backportingdkf2004-10-2734-311/+772
|
* More doc fix backportingdkf2004-10-2730-216/+743
|
* Backport many doc fixesdkf2004-10-2721-105/+463
|
* * tests/subst.test (subst-12.3-5): More tests for Bug 1036649.dgp2004-10-262-2/+10
|
* reversed expected result from subst-12.3 to match Tcl 7.6 behavior.dgp2004-10-261-2/+2
|
* * tests/subst.test (subst-12.3,4): More tests for Bug 1036649.dgp2004-10-262-3/+19
|
* * tests/compile.test (compile-12.4): Backport test for Bug 1001997.dgp2004-10-269-19/+155
| | | | | | | | | | | | | | * tests/timer.test (timer-10.1): Backport test for Bug 1016167. * tests/tcltest.test (tcltest-12.3,4): Backport setup corrections. * tests/error.test (error-6.3,4,7,9): Backport of some tests. * tests/basic.test (basic-49.*): * tests/namespace.test (namespace-8.7): * tests/init.test (init-2.8): Updated to not rely on http package. * generic/tclThreadTest.c (ThreadEventProc): Corrected subtle bug where the returned (char *) from Tcl_GetStringResult(interp) continued to be used without copying or refcounting, while activity on the interp continued.
* whitespace changeshobbs2004-10-231-14/+14
|
* make genstubsdkf2004-10-142-2/+70
|
* Speed up [info <thing> <simplePattern>]dkf2004-10-144-53/+213
|
* * win/tclWinFile.c (NativeIsExec): correct result of 'filehobbs2004-10-082-10/+18
| | | | executable' to not be case sensitive. [Bug 954263]
* * generic/tclNamesp.c (Tcl_PopCallFrame): Removed Bug 1038021dgp2004-10-052-20/+7
| | | | workaround. That bug is now fixed.
* Correction to 1038021 bug fix; should only save restore those bitsdgp2004-10-011-3/+4
| | | | | that get cleared by Tcl_ResetResult() and not more serious things like DELETED.
* * generic/tclNamespace.c (TclTeardownNamespace): Tcl_Obj-ifieddgp2004-09-306-42/+82
| | | | | | | | | | | | | | | * tests/namespace.test (namespace-8.5,6): the save/restore of ::errorInfo and ::errorCode during global namespace teardown. Revised the comment to clarify why this is done, and added tests that will fail if this is not done. * generic/tclResult.c (TclTransferResult): Added safety checks so that unexpected undefined ::errorInfo or ::errorCode will not lead to a segfault. * generic/tclVar.c (CallVarTraces): Save/restore the flag * tests/var.test (var-16.1): values that define part of the interpreter state during variable traces. [Bug 10381021].
* * tests/subst.test (12.2): test correction.Miguel Sofer2004-09-302-2/+6
|
* fix for buffer overflow in [subst], [Bug 1036649]Miguel Sofer2004-09-293-2/+35
|
* * unix/dltest/Makefile.in (clean): Fixup make cleanmdejong2004-09-232-2/+13
| | | | | | rule so that it does not delete all files when SHLIB_SUFFIX is set to the empty string in a static build. [Bug 1016726]
* Some tests were non-portable, alas.dkf2004-09-191-2/+2
|
* Make sure large shifts shift for real. [Bug 868467]dkf2004-09-183-8/+93
|
* * tests/load.test (load-2.3): adopted fix for failure on darwindas2004-09-142-3/+9
| | | | from HEAD.
* * generic/tclObj.c (Tcl_GetIntFromObj): Corrected flaw in returningdgp2004-09-142-2/+7
| | | | the int value of a wideInteger. [Bug 1027690]
* Minor mods to latest commit to correct bugs and compiler warnings ondgp2004-09-101-7/+9
| | | | TCL_WIDE_INT_IS_LONG platforms.