summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* Generate RTF (for HLP files) correctly from manpages using advanced *roffdkf2004-07-071-0/+3
| | | | formatting constructs.
* Add missing objTypes to catalogdkf2004-07-071-0/+5
|
* * tests/cmdMZ.test (cmdMZ-return-2.17): Added a test that a worddgp2004-07-061-0/+10
| | | | | | | | | containing backslash-quoted value is treated correctly. * generic/tclCompile.c (TclWordKnownAtCompileTime): [Bug 986196] Corrected flaw above and the flaw that caused TCL_TOKEN_SIMPLE_WORDs to have their original word value copied ( "{a b}" ) rather than the actual value ( "a b" ). Thanks to Kevin Kenny for report and tests.
* * tests/cmdMZ.test (cmdMZ-return-2.15,cmdMZ-return-2.16):Kevin B Kenny2004-07-061-0/+6
| | | | | Added a test that a return code containing spaces is correctly returned.
* Adapt HTML generator to be able to cope with advanced constructs in Tk's bind.ndkf2004-07-061-0/+5
|
* * generic/tclBasic.c (DeleteInterpProc): fix for [Bug 983660],Miguel Sofer2004-07-051-0/+10
| | | | | | | | | found by pspjuth. Tear down the global namespace before freeing the interp handle, to allow the bytecodes to free their non-shared literals. * generic/tclLiteral.c (TclReleaseLiteral): moved special code for self-ref so that it is also used for non-shared literals. Possible bug found by inspection.
* added support for wide integers to round(); [Bug 908375], reported byMiguel Sofer2004-07-031-0/+6
| | | | Hemang Lavana.
* Moved declaration of TclCompEvalObj() from tclCompile.h to the internalMiguel Sofer2004-07-031-0/+9
| | | | stubs table, for compiler experimentation.
* * generic/regcomp.c (stid): correct minor pointer size errorhobbs2004-07-021-0/+2
|
* * generic/tclPipe.c (TclCreatePipeline): applied TIP #202 patchhobbs2004-07-021-0/+6
| | | | | * doc/exec.n, tests/exec.test: that adds 2>@1 as a special case redirection of stderr to the result output.
* tests/winPipe.test (winpipe-1.11): Fixed a bug that causedKevin B Kenny2004-07-021-0/+3
| | | | | test to fail if the path name of the working directory contained whitespace [Bug 678430]
* tests/io.test: Changed several tests to run the eventKevin B Kenny2004-07-021-0/+7
| | | | | | loop rather than just calling [update] periodically, avoiding intermittent failures (usually in io-29.32) that stemmed from unreaped processes on Windows.
* added testvincentdarley2004-07-021-0/+4
|
* Fix missed references to 8.4, spotted by Theo Verelst.dkf2004-07-011-0/+6
|
* Doc fixes. [Bug 983146]dkf2004-07-011-0/+5
|
* * tests/fileSystem.test: Minor correction to new fileSystem-9.Xdgp2004-06-301-0/+5
| | | | tests so that they clean up temporary directories correctly.
* fix to trailing slash documentation and to a filesystem 'file join' bug on ↵vincentdarley2004-06-301-0/+8
| | | | windows
* TIP#188 implementation. Thanks to KBK! [Patch 940915]dkf2004-06-301-0/+8
|
* * win/tclWinInit.c: Corrected reference counting flaw indgp2004-06-291-0/+5
| | | | recent changes. Thanks to Pat Thoyts. [Bug 981893].
* fix to compilation error with VC++ 5.2vincentdarley2004-06-291-0/+4
|
* Fix [Bug 981733]; bizarre resolver brokenness strikes again!dkf2004-06-291-0/+5
|
* Fix constraints so can test with tclsh as well as tcltest [Bug 736431]dkf2004-06-241-0/+5
|
* * generic/tclThreadStorage.c: Corrected type casting errors that leddgp2004-06-241-0/+7
| | | | | | to calculation of a negative index value, thus accesses outside the threadStorageCache array, thus memory corruption. Crash observed on Mac OS X platform.
* Version 5 of [Patch 976496]Joe Mistachkin2004-06-241-0/+20
|
* * tests/io.test: Added -force to 18.1 and 18.2. This was failingpatthoyts2004-06-231-0/+3
| | | | on WinXP.
* * tests/winFCmd.test: Added a cleanup to winFCmd-16.11 to avoid apatthoyts2004-06-231-0/+3
| | | | failure in 16.12.
* * tests/eofchar.data: Added -kb option to ensure a binary checkoutpatthoyts2004-06-231-0/+3
| | | | to win32 systems. This fixes a failure in io-61.1
* * win/makefile.vc: fix for bug #977369 about launching tclsh topatthoyts2004-06-231-0/+5
| | | | generate a tclConfig.sh with the nmake build system
* * tests/winDde.test (createChildProcess): Added a 200-ms delayKevin B Kenny2004-06-231-0/+8
| | | | | | | (with the event loop live) when shutting down the test DDE server process, With the delay in place, nuisance failures of tests winDde-4.2, -6.5, and -6.6 appear to be much less frequent. [Bug #957449]
* Standardize some use of test constraints onto names that are documenteddkf2004-06-231-0/+2
|
* Version of [Patch 746578] that works with Linux and is likely to work elsewheredkf2004-06-231-0/+7
|
* own typo repaireddavygrvy2004-06-221-1/+1
|
* * generic/tclEvent.c (NewThreadProc): Fixed broken build onKevin B Kenny2004-06-221-0/+8
| | | | | | Windows caused by missing TCL_THREAD_CREATE_RETURN. * tests/stack.test (stack-3.1): Corrected nuisance error in threaded builds.
* See file...vasiljevic2004-06-221-0/+15
|
* * win/tclWin32Dll.c (DllMain, _except_dllmain_detach_handler,mdejong2004-06-211-0/+16
| | | | | | | | | | | | | | | TclpCheckStackSpace, _except_checkstackspace_handler, TclWinCPUID, _except_TclWinCPUID_detach_handler): * win/tclWinChan.c (Tcl_MakeFileChannel, _except_makefilechannel_handler): * win/tclWinFCmd.c (DoRenameFile, _except_dorenamefile_handler, DoCopyFile, _except_docopyfile_handler): Rework pushing of exception handler function pointer so that compiling with gcc -O3 works. Remove empty function call to avoid compiler warning. Mark the DllMain function as noinline to avoid compiler error from duplicated asm labels in generated code.
* Make [Bug 975895] less likely to be hitdkf2004-06-211-0/+6
|
* * tests/load.test: Relaxed strictness of error message matchingdgp2004-06-191-0/+3
| | | | for test load-2.3 so that it will pass on Mac OSX.
* * generic/tclEncoding.c: Static TclFindEncodings -> FindEncodings.dgp2004-06-181-0/+8
| | | | | | | * generic/tclInt.h: Updated TclpFindExecutable() so that failed * generic/tclUtil.c: attempts to find the executable are saved * unix/tclUnixFile.c: just as successful finds are. [Patch 966053] * unix/tclUnixTest.c:
* * tests/winFCmd.test (winFCmd-16.12): Changed test toKevin B Kenny2004-06-181-0/+6
| | | | | compute the target directory, so as not to fail if the user's HOME isn't the root.
* * unix/tcl.m4: autoconf 2.5 fixes in Darwin section.das2004-06-181-0/+5
| | | | * unix/configure: autoconf-2.57
* Added various Chinese locale->encoding mappingsdkf2004-06-181-0/+3
|
* Fixed [Bug 886231] properly this time rather than with a broken version thatdkf2004-06-181-0/+5
| | | | breaks the core completely. :^}
* Fix tclWinInit.c for KBK, adding comments as I go. :^)dkf2004-06-181-0/+5
|
* * generic/tclObj.c: Added missing space in panic message.dgp2004-06-171-0/+2
|
* * win/tclWinInit.c: Inform [tclInit] about the default librarydgp2004-06-171-0/+7
| | | | | | directory via the ::tclDefaultLibrary variable. This should correct a problem with my 2004-06-11 commit. Better solutions still in the works. Thanks to Joe Mistachkin for pointing out the breakage.
* * doc/library.n: Moved variables ::auto_oldpath anddgp2004-06-161-0/+6
| | | | | * library/auto.tcl: ::unknown_pending into ::tcl namespace. * library/init.tcl: [Bugs 808319, 948794]
* Added doc clarification in response to [RFE 768852]dkf2004-06-151-0/+5
|
* * unix/tclConfig.sh.in (TCL_EXTRA_CFLAGS): set to @CFLAGS@, whichhobbs2004-06-151-0/+5
| | | | is the configure-time CFLAGS. Addendum to m4 change on 2004-05-26.
* * win/Makefile.in: Corrected compilation flags for tclPkgConfig.cKevin B Kenny2004-06-141-0/+8
| | | | | | | so that it doesn't require Stubs. * generic/tclBasic.c (Tcl_CreateInterp): Removed comment stating that TclInitEmbeddedConfigurationInformation needs Stubs; with the change above, the comment is now erroneous.
* formattingdgp2004-06-141-3/+3
|