summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* backport fixes for 868489 and 1026125Kevin B Kenny2004-10-271-0/+9
|
* Finished user-level documentation backportdkf2004-10-271-1/+1
|
* Yet more doc update backportingdkf2004-10-271-1/+1
|
* More doc fix backportingdkf2004-10-271-1/+1
|
* Backport many doc fixesdkf2004-10-271-0/+4
|
* * tests/subst.test (subst-12.3-5): More tests for Bug 1036649.dgp2004-10-261-1/+1
|
* * tests/subst.test (subst-12.3,4): More tests for Bug 1036649.dgp2004-10-261-0/+2
|
* * tests/compile.test (compile-12.4): Backport test for Bug 1001997.dgp2004-10-261-0/+15
| | | | | | | | | | | | | | * 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
|
* Speed up [info <thing> <simplePattern>]dkf2004-10-141-0/+7
|
* * win/tclWinFile.c (NativeIsExec): correct result of 'filehobbs2004-10-081-0/+5
| | | | executable' to not be case sensitive. [Bug 954263]
* * generic/tclNamesp.c (Tcl_PopCallFrame): Removed Bug 1038021dgp2004-10-051-1/+6
| | | | workaround. That bug is now fixed.
* * generic/tclNamespace.c (TclTeardownNamespace): Tcl_Obj-ifieddgp2004-09-301-0/+16
| | | | | | | | | | | | | | | * 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-301-0/+4
|
* fix for buffer overflow in [subst], [Bug 1036649]Miguel Sofer2004-09-291-0/+6
|
* * unix/dltest/Makefile.in (clean): Fixup make cleanmdejong2004-09-231-0/+7
| | | | | | rule so that it does not delete all files when SHLIB_SUFFIX is set to the empty string in a static build. [Bug 1016726]
* Make sure large shifts shift for real. [Bug 868467]dkf2004-09-181-0/+5
|
* * tests/load.test (load-2.3): adopted fix for failure on darwindas2004-09-141-0/+5
| | | | from HEAD.
* * generic/tclObj.c (Tcl_GetIntFromObj): Corrected flaw in returningdgp2004-09-141-0/+5
| | | | the int value of a wideInteger. [Bug 1027690]
* One less crazy long/wide aunt in the attic... [Bug 868489]dkf2004-09-101-0/+4
|
* Fix [Bug 1025359] to make sure wide seeks don't lose errorsdkf2004-09-101-0/+5
|
* * generic/tcl.h: Micro formatting fixes.andreas_kupries2004-09-101-0/+6
| | | | | * generic/tclIOGT.c: Channel version fixed, must be 3, to have wideseekProc. Thanks to David Graveraux <davygrvy@pobox.com>.
* * generic/tclNamespace.c (TclGetNamespaceForQualName): Resolveddgp2004-09-101-0/+10
| | | | | | | | | longstanding inconsistency in the treatment of the TCL_NAMESPACE_ONLY flag revealed by testing the 2004-09-09 commits against Itcl. TCL_NAMESPACE_ONLY now acts as specified in the pre-function comment, forcing resolution in the passed in context namespace. It has been incorrectly forcing resolution in the interp's current namespace.
* * generic/tclExecute.c (INST_CONCAT1): added a peepholeMiguel Sofer2004-09-101-0/+7
| | | | | | optimisation for concatting an empty string. This enables replacing the idiom 'K $x [set x {}]' by '$x[set x {}]' for fastest execution.
* Also corrected faulty prevention of [namespace import] cycles.dgp2004-09-091-0/+2
| | | | [Bug 1017299]
* * generic/tclNamesp.c (Tcl_ForgetImport): Corrected faultydgp2004-09-091-0/+6
| | | | | * tests/namespace.test: logic that relied exclusively on string matching and failed in the presence of [rename]s. [Bug 560297]
* * compat/strftime.c (_conv): Corrected a problem where hour 0Kevin B Kenny2004-09-081-0/+7
| | | | | | would format as a blank format group with %k. * tests/clock.test (clock-41.1): Added regression test case for %k at the zero hour.
* * generic/tclTimer.c: Removed a premature optimisation thatKevin B Kenny2004-09-071-0/+7
| | | | | | attempted to store the assoc data in the client data; the optimisation caused a bug that [after] would overwrite its imports. [Bug 1016167]
* Clarify meaning of [lsearch -dictionary]dkf2004-09-021-0/+4
|
* * win/tclWin32Dll.c (TclWinCPUID): need _asm for WIN64 (Itanium),hobbs2004-09-011-0/+10
| | | | until we have it, just return unknown. [Bug 1020445]
* Fix crash in [string map] when objects are shared. [Bug 1018562]dkf2004-08-301-0/+5
|
* * tests/env.test: macosx fixes.das2004-08-261-0/+4
|
* Ensure that the %ld conversion works correctly on 64-bit platforms. [Bug ↵dkf2004-08-191-0/+5
| | | | 1011860]
* date correctiondgp2004-08-161-1/+1
|
* fix for [Bug 1008314]Miguel Sofer2004-08-161-0/+8
|
* * library/msgcat/msgcat.tcl: Added checks to prevent [mclocale]dgp2004-08-131-0/+7
| | | | | | * tests/msgcat.test: from registering filesystem paths to possibly malicious code to be evaluated by a later [mcload]. * library/msgcat/pkgIndex.tcl: Bump to msgcat 1.3.3
* Changed handling of the returned thread ID since broken on 64-bitvasiljevic2004-08-101-0/+6
| | | | systems (Cray). Thanks to Rob Ratcliff for reporting the bug.
* * generic/tclEvent.c (Tcl_Finalize): Re-organized Tcl_Finalizedgp2004-07-301-0/+6
| | | | | so that Tcl_ExitProc's that call Tcl_Finalize recursively do not cause deadlock. [Patch 999084 fixes Tk Bug 714956]
* * unix/configure:das2004-07-301-0/+7
| | | | | | * unix/tcl.m4 (SC_CONFIG_CFLAGS): Darwin: instead of setting PLAT_OBJS to explict object files in tcl.m4, refer to MAC_OSX_OBJS makefile var. * unix/Makefile.in: added MAC_OSX_OBJS variable.
* * generic/tclMain.c (Tcl_Main, StdinProc): Append newline onlydgp2004-07-281-0/+7
| | | | | | * tests/basic.test (basic-46.1): to incomplete scripts as part of multi-line script construction. Do not add an extra trailing newline to the complete script. [Bug 833150]
* (io-61.1): create file in binary mode for x-platcore_8_4_7hobbs2004-07-261-0/+2
|
* note 8.4.7 tag datehobbs2004-07-261-11/+12
|
* * generic/tclThreadAlloc.c: Moved the tclInt.h include to providepatthoyts2004-07-251-0/+5
| | | | Tcl_Panic which is now required for non-threaded build.
* * tests/eofchar.data (removed): Test io-61.1 now generates its owndgp2004-07-231-1/+5
| | | | * tests/io.test: file of test data as needed.
* * win/tclWinDde.c: Bump to dde 1.2.3 to cover changesdgp2004-07-231-1/+8
| | | | | | * library/dde/pkgIndex.tcl: committed on 2004-06-14. * changes: Updated for Tcl 8.4.7 release.
* typo/format fixesdgp2004-07-221-4/+5
|
* * generic/tclEvent.c: Correct threaded obj allocator tohobbs2004-07-211-0/+8
| | | | | | | * generic/tclInt.h: fully cleanup on exit and allow for * generic/tclThreadAlloc.c: reinitialization. [Bug #736426] * unix/tclUnixThrd.c: (mistachkin, kenny) * win/tclWinThrd.c:
* * unix/tcl.m4: fixed Darwin autoconf breakage caused bydas2004-07-201-0/+7
| | | | | | | | recent CFLAGS reordering. * unix/configure: regen * unix/tclConfig.sh.in: replaced EXTRA_CFLAGS with CFLAGS. * unix/dltest/Makefile.in: replaced EXTRA_CFLAGS with DEFS.
* * macosx/tclMacOSXBundle.c: dynamically acquire address fordas2004-07-201-0/+6
| | | | | CFBundleOpenBundleResourceMap symbol, since it is only present in full CoreFoundation on Mac OS X and not in CFLite on pure Darwin.
* * unix/Makefile.in, unix/tcl.m4: move (C|LD)FLAGS after theirhobbs2004-07-191-0/+13
| | | | | | | | | | | | * unix/configure.in, unix/configure: _DEFAULT to allow for env setting to override m4 switches. Consolidate header checks to limit redundancy in configure. (CFLAGS_WARNING): Remove -Wconversion, add -fno-strict-aliasing for gcc builds (need to suppress 3.x type puning warnings). (SC_ENABLE_THREADS): Set m4 to force threaded build when built against a threaded Tcl core. Reorder configure.in for better 64-bit build configuration, replacing EXTRA_CFLAGS with CFLAGS. [Bug #874058]