summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug 1334461Kevin B Kenny2005-10-211-0/+6
|
* Formatting regularizationdkf2005-10-211-876/+819
|
* Improve the documentation of [binary scan] a little.dkf2005-10-211-0/+6
|
* whitespace cleanupdkf2005-10-201-2/+2
|
* * generic/tclListObj.c (TclLsetFlat):Miguel Sofer2005-10-201-1/+8
| | | | | * tests/lset.test (lset-10.3): fixed handling of unshared lists with shared sublists, [Bug 1333036] reported by neuronstorm.
* See changelog entrydkf2005-10-191-0/+7
|
* * generic/tclClock.c: Removed some dead code.dgp2005-10-191-0/+13
| | | | | | | | | | | | * generic/tclCmdIL.c: * generic/tclCompCmds.c: * generic/tclDictObj.c: * generic/tclExecute.c: * generic/tclLiteral.c: * generic/tclParseExpr.c: * generic/tclScan.c: * generic/tclUtil.c: * generic/tclVar.c:
* General cleanup of reflected channel codedkf2005-10-191-3/+9
|
* * generic/tclExecute.c (INST_DICT_APPEND, INST_DICT_LAPPEND):Miguel Sofer2005-10-191-0/+6
| | | | | fixed faulty peephole optimisation that can cause crashes [Bug 1331475]
* Split off changelog entries for 2004dkf2005-10-181-4748/+40
| | | | Fixed erroneous dates on some 2005 entries
* * generic/tclExecute.c: Added optimization for I32L64 systems todgp2005-10-181-0/+6
| | | | | avoid using bignums to perform int multiplies. The improvement shows up most dramatically in tclbench's matrix.bench.
* * generic/tclExecute.c: Restored some optimizations of thedgp2005-10-151-0/+5
| | | | INST_INCR_SCALAR1_IMM opcode.
* See file.vasiljevic2005-10-141-0/+12
|
* Tidied up do {...} while(0)Kevin B Kenny2005-10-141-0/+5
|
* * generic/tcl.h: Fix for bug #1256937 - correctly decoratepatthoyts2005-10-141-0/+5
| | | | * generic/tclMain.c: imported functions from msvcrt in static builds.
* Test updates from [Bug 1284178]dkf2005-10-131-0/+5
|
* Temporary ifdef TCL_THREADS changes done to de-activate pendingvasiljevic2005-10-131-0/+6
| | | | event processing when channel is being closed/cutted.
* * generic/tclExecute.c: Removed obsolete use of NO_ERRNO_H.dgp2005-10-131-0/+9
| | | | | | | | | | * tools/man2tcl.c: * unix/tcl.m4: * unix/tclConfig.h.in: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* * compat/tclErrno.h: Removed obsolete file.dgp2005-10-131-0/+2
|
* * generic/tclStrToD.c (TclParseNumber): Missing goto caused crashdgp2005-10-131-0/+5
| | | | when parsing "Na". [Bug 1325833]
* * generic/tclExecute.c (GetNumberFromObj): Restored some lostdgp2005-10-121-0/+6
| | | | | optimizations for empty string values. We avoid cost of a call to TclParseNumber just to tell us an empty string isn't a number.
* Fix for [Bug 1325099]dkf2005-10-121-3/+8
|
* performance improvements to [incr]Kevin B Kenny2005-10-121-0/+6
|
* * generic/tclCompCmds.c: New convenience macro CompileTokens().Miguel Sofer2005-10-101-2/+6
|
* * generic/tclExecute.c: Corrections to the NO_WIDE_TYPE build. Alsodgp2005-10-101-4/+2
| | | | added missing "break" to a switch that broke wide XOR operations.
* * generic/tclExecute.c: Corrections to the NO_WIDE_TYPE build.dgp2005-10-101-0/+7
| | | | | | * generic/tclInt.h: Restored HEAD to the NO_WIDE_TYPE configuration until some breakage in the #undef NO_WIDE_TYPE configuration is corrected.
* Fix two bugs in limits, one a crash and the other a failed flag reset.dkf2005-10-101-1/+10
|
* removing wrong commentMiguel Sofer2005-10-101-1/+2
|
* * generic/tclExecute.c: fixing errors in last commit.Miguel Sofer2005-10-101-0/+4
|
* * generic/tclBasic.c:Miguel Sofer2005-10-091-0/+8
| | | | | | | * generic/tclExecute.c: * generic/tclStrToD.c: * generic/tclStringObj.c: initialise variables to avoid compiler warnings ([Bug 1320818] among others).
* TIP#237 IMPLEMENTATIONdgp2005-10-081-3/+583
| | | | | | [kennykb-numerics-branch] Resynchronized with the HEAD; at this checkpoint [-rkennykb-numerics-branch-20051008], the HEAD and kennykb-numerics-branch contain identical code.
* * unix/tclUnixFCmd.c (TraverseUnixTree): Adjust 2004-11-11 change tomsofer_wcodes_branch_20051007kennykb_numerics_branch_20051008hobbs2005-10-071-0/+6
| | | | | * tests/fCmd.test (fCmd-20.2): account for NFS special files with a readdir rewind threshold. [Bug 1034337]
* * generic/tclPipe.c (TclCreatePipeline): Fixed [SF Tcl Bugandreas_kupries2005-10-051-0/+3
| | | | 1109294]. Applied the patch provided by David Gravereaux.
* * doc/CrtChannel.3: Fixed [SF Tcl Bug 1104682], by application ofandreas_kupries2005-10-051-0/+4
| | | | | David Welton's patch for it, and added a note about wideSeekProc.
* * generic/tclIORChan.c (RcClose): Removed unreachable panic/returnandreas_kupries2005-10-051-0/+5
| | | | statements. This fixes the remainder of [SF Tcl Bug 1286256].
* * tests/env.test (env-6.1):hobbs2005-10-051-0/+12
| | | | | | | | | | | * win/tclWinPort.h: define USE_PUTENV_FOR_UNSET 1 * generic/tclEnv.c (TclSetEnv, TclUnsetEnv): add USE_PUTENV_FOR_UNSET to existing USE_PUTENV define to account for various systems that have putenv(), but can't unset env vars with it. Note difference between Windows and Linux for actually unsetting the env var (use of '='). Correct the resizing of the environ array. We assume that we are in full ownership, but that's not correct.[Bug 979640]
* win/tclWinSerial.c (SerialSetOptionProc): free argv [Bug 1067708]hobbs2005-10-051-0/+2
|
* * tests/http.test: do not URI encode -._~ accordinghobbs2005-10-051-0/+3
| | | | * library/http/http.tcl (init): to RFC3986. [Bug 1182373] (aho)
* * unix/tclLoadShl.c (TclpDlopen): use DYNAMIC_PATH on secondhobbs2005-10-051-0/+3
| | | | shl_load only. [Bug 1204237]
* scan %[] requires "one or more chars" [Bug 1277503]hobbs2005-10-051-0/+2
|
* * tests/winFile.test (getuser): allow valid Windows usernames.hobbs2005-10-051-2/+5
| | | | [Bug 1311285]
* * generic/tclParse.c (Tcl_ParseCommand): add code that recognizeshobbs2005-10-041-0/+6
| | | | | {} in addition to {expand} for word expansion (make with -DALLOW_EMPTY_EXPAND).
* See file.vasiljevic2005-10-041-0/+9
|
* fixed test cases for new US DST rules.Kevin B Kenny2005-10-031-0/+2
|
* Rebuild tzdata from Olson's tzdata2005n.tar.gzKevin B Kenny2005-10-031-2/+10
|
* * generic/tclMain.c: Separate encoding conversion of command linedgp2005-09-301-0/+5
| | | | arguments from list formatting. [Bug 1306162].
* implementation for TIP #255, expr min/maxhobbs2005-09-291-0/+6
|
* Test for [Bug 1116542]dkf2005-09-271-249/+253
|
* update tclTomMath.h for bug 1263012Kevin B Kenny2005-09-261-2/+6
|
* Regen tommath.h from release 0.36Kevin B Kenny2005-09-261-0/+5
|