summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * tests/unixInit.test (unixInit-3.1): Default encoding on Darwindgp2004-04-061-0/+5
| | | | systems is utf-8. Thanks to Steven Abner (tauvan). [Bug 928808]
* root interacts badly with access(...,X_OK) [Bug 929892]dkf2004-04-061-0/+6
|
* add thanksdgp2004-04-021-1/+1
|
* * generic/tclCompile.c:Miguel Sofer2004-04-021-0/+6
| | | | | * generic/tclInt.h: removed the macro TCL_ALIGN() from tclInt.h, replaced by the static macro ALIGN() in tclCompile.c [Bug 926445]
* * generic/tclCompile.h: removed redundant #ifdef _TCLINTMiguel Sofer2004-04-021-0/+5
| | | | [Bug 928415], reported by tauvan.
* * tests/tcltest.test: Corrected constraint typos: "nonRoot" ->dgp2004-04-021-0/+5
| | | | "notRoot". [Bug 928353]
* * generic/tclInt.h: Removed obsolete tclBlockTime* declarations.dgp2004-04-011-0/+5
| | | | [Bug 926454]
* cross-filesystem boundary glob fixvincentdarley2004-04-011-0/+7
|
* date fixdgp2004-03-311-1/+1
|
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-311-4/+10
| | | | | | | | | | | | | | * library/msgcat/msgcat.tcl: Updated internals to make use of [dict]s to store message catalog data and to use [source -encoding utf-8] to access catalog files. Thanks to Michael Sclenker. [Patch 875055, RFE 811459] Corrected [mcset] to be able to successfully set a translation to the empty string. [mcset $loc $src {}] was incorrectly set the $loc translation of $src back to $src. Also changed [ConvertLocale] to minimally require a non-empty "language" part in the locale value. If not, an error raised prompts [Init] to keep looking for a valid locale value, or ultimately fall back on the "C" locale. [Bug 811461]. * library/msgcat/pkgIndex.tcl: Bump to msgcat 1.4.1.
* * doc/msgcat.n: Clarified message catalog file encodings. [Bug 811457]dgp2004-03-311-0/+1
|
* * library/msgcat/msgcat.tcl: Updated internals to make use ofdgp2004-03-311-0/+8
| | | | | | | * library/msgcat/pkgIndex.tcl: [dict]s to store message catalog data and to use [source -encoding utf-8] to access catalog files. Thanks to Michael Sclenker. Also corrects bug to allow translation to an empty string. Bump to msgcat 1.4.1. [Patch 875055]
* More hash function cleaning up.dkf2004-03-301-0/+3
|
* Fixed object hashing bozo-ness. The code as it stood looked like adkf2004-03-301-6/+12
| | | | | cargo-cult hangover from the hashing code in tclHash.c, but this looks almost identical to that used for literals (which is fast.)
* * generic/tclExecute.c (TEBC): reverting to the previous methodMiguel Sofer2004-03-301-0/+6
| | | | | for async tests in TEBC, as the new method turned out to be too costly. Async tests now run every 64 instructions.
* * generic/tclCompile.c: New instruction code INST_START_CMDMiguel Sofer2004-03-301-0/+10
| | | | | | | | | * generic/tclCompile.h: that allows checking the bytecode's * generic/tclExecute.c: validity [Bug 729692] and the interp's * tests/interp.test (18.9): readyness [Bug 495830] before running * tests/proc.test (7.1): the command. It also changes the * tests/rename.test (6.1): mechanics of the async tests in TEBC, doing it now at command start instead of every 16 instructions.
* fix to glob with volume relative paths, bug 898238vincentdarley2004-03-301-0/+12
|
* fix to Tcl bug 918320vincentdarley2004-03-301-0/+5
|
* overlooked update to tests.dgp2004-03-291-3/+4
|
* * generic/tclMain.c (Tcl_Main, StdinProc): Append newline only todgp2004-03-291-0/+6
| | | | | incomplete scripts as part of multi-line script construction. Do not add an extra trailing newline to the complete script. [Bug 833150]
* Changelog fixMiguel Sofer2004-03-291-1/+1
|
* * generic/tclCompile.c (TclCompileScript): corrected possibleMiguel Sofer2004-03-291-0/+6
| | | | | segfault when a compilation returns TCL_OUTLINE_COMPILE after having grown the compile environment.
* * doc/array.n: added documentation for trace-realted behaviour ofMiguel Sofer2004-03-281-0/+5
| | | | 'array get' [Bug 449893]
* * README: Bumped version number to 8.5a2 todgp2004-03-261-0/+12
| | | | | | | | | | | * tools/tcl.wse.in: distinguish HEAD of CVS development * unix/configure.in: from the recent 8.5a1 release. * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf-2.57 * win/configure:
* fixed another volume-relative file normalization problemvincentdarley2004-03-261-1/+2
|
* fix to windows volume-relative path normalizationvincentdarley2004-03-261-0/+5
|
* Silly bug found originally by Damon Courtney. [922752]dkf2004-03-241-0/+6
|
* Docfix. [Bug 921464]dkf2004-03-231-0/+5
|
* Made HEAD build on Windows VC++ again.Kevin B Kenny2004-03-191-0/+11
|
* Fix breakage by making tclIntDecls.h #inc tclPort.h, as recommended by DGP.dkf2004-03-191-0/+5
|
* *** empty log message ***rmax2004-03-181-0/+17
|
* Reverted changes to tcltest so that it can still support Mac whendgp2004-03-171-2/+0
| | | | copied to Mac systems (only requires Tcl 8.3).
* Removed support for Mac OS Classic platform [Patch 918142]das2004-03-171-0/+144
|
* Slightly better docs for [lsearch]'s advanced capabilitiesdkf2004-03-171-0/+6
|
* * doc/catch.n: Compiled [catch] no longer fails to catch syntaxdgp2004-03-161-0/+6
| | | | | errors. Removed the claims in the documentation that it does. * doc/return.n: Updated example to use [dict merge].
* * unix/configure, unix/tcl.m4: add -Wno-strict-aliasing for GCC tohobbs2004-03-161-0/+5
| | | | suppress useless type puning warnings.
* Formatting fix. [Bug 917171]dkf2004-03-161-0/+4
|
* no messagedavygrvy2004-03-161-0/+9
|
* Implementation of [dict merge] subcommand, based on [FRQ 745851]dkf2004-03-121-0/+7
|
* * generic/tclGetDate.y (TclGetDate): Fix so that Kevin B Kenny2004-03-101-0/+11
| | | | | | | | | | [clock scan <timeOfDay> -gmt true] uses the GMT base date instead of the local one. [Bug 913513] * tests/clock.test: Added test cases for wrong ISO8601 week number [Bug 500285] and wrong GMT base date [Bug 913513]. Several tests still fail on Windows, and these are actual faults in [clock scan]. Fix is still pending. * generic/tclDate.c: Regenerated.
* glob -path fix for near filesystem rootvincentdarley2004-03-091-0/+5
|
* * generic/tclParse.c (TclParseInit): Modified TclParseInit sodgp2004-03-081-0/+7
| | | | | | * generic/tclTest.c ([testexprparser]): that Tcl_Parse initialization conforms to documented promised about what fields will not be modified by what Tcl_Parse* routines. [Bug 910595]
* * win/configure: Regen.mdejong2004-03-051-0/+9
| | | | | | | | * win/configure.in: Check for define of MWMO_ALERTABLE in winuser.h. * win/tclWinPort.h: If MWMO_ALERTABLE is not defined in winuser.h then define it. This is needed for Mingw.
* * generic/tclTest.c: Modified TesteventObjCmd to use Kevin B Kenny2004-03-051-0/+7
| | | | | | a Tcl_QueuePosition in place of an 'int' for the enumerated queue position, to avoid a compiler warning on SGI. (Bug #771960).
* Kevin B Kenny2004-03-051-0/+7
| | | | | | | * tests/registry.test: Applied fix from Patch #910174 to make the test for an English-language system include any country code, rather than just English-United States.1252. Thanks to Pat Thoyts for the changes.
* * generic/tclInt.h (TclParseInit): Factored the common codedgp2004-03-041-2/+3
| | | | | * generic/tclParse.c (TclParseInit): for initializing a Tcl_Parse * generic/tclParseExpr.c: struct into one routine.
* Applied fix from #766159 for Win98 registry to skip unicode tests.patthoyts2004-03-041-0/+5
|
* * generic/tclParse.c (InitParse): Factored the common codedgp2004-03-041-0/+5
| | | | for initializing a Tcl_Parse struct into one routine.
* Added TIP #100 support to the registry package (patch #903831)patthoyts2004-03-041-0/+7
| | | | | This provides a Windows test of the TIP #100 mechanism and a sample to show how unloading an extension can be done.
* Fix minor syntax problems. [Bug 909288]dkf2004-03-041-0/+4
|