summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclCompile.h:Miguel Sofer2004-05-161-0/+12
| | | | | | | | | | | * generic/tclCompile.c: * generic/tclExecute.c: changed implementation of {expand}, last chance while in alpha as ... ***POTENTIAL INCOMPATIBILITY*** Scripts precompiled with ProComp under previous tcl8.5a versions may malfunction due to changed instruction numbers for INST_LIST_INDEX_IMM, INST_LIST_RANGE_IMM and INST_START_CMD.
* 2004-05-14 Kevin B. Kenny <kennykb@acm.org> Kevin B Kenny2004-05-141-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.decls: Promoted TclpLocaltime and TclpGmtime * generic/tclIntDecls.h: from Unix-specific stubs to the generic * generic/tclIntPlatDecls.h: internal Stubs table. Reran 'genstubs' * generic/tclStubInit.c: * unix/tclUnixPort.h: * generic/tclClock.c: Changed a buggy 'GMT' timezone specification to the correct 'GMT0'. [Bug #922848] * unix/tclUnixThrd.c: Moved TclpGmtime and TclpLocaltime to unix/tclUnixTime.c where they belong. * unix/tclUnixTime.c (TclpGmtime, TclpLocaltime, TclpGetTimeZone, ThreadSafeGMTime [removed], ThreadSafeLocalTime [removed], SetTZIfNecessary, CleanupMemory): Restructured to make sure that the same mutex protects all calls to localtime, gmtime, and tzset. Added a check in front of those calls to make sure that the TZ env var hasn't changed since the last call to tzset, and repeat tzset if necessary. [Bug #942078] Removed a buggy test of the Daylight Saving Time information in 'gettimeofday' in favor of applying 'localtime' to a known value. [Bug #922848] * tests/clock.test (clock-3.14): Added test to make sure that changes to $env(TZ) take effect immediately. * win/tclWinTime.c (TclpLocaltime, TclpGmtime): Added porting layer for 'localtime' and 'gmtime' calls.
* * generic/tclExecute.h:Miguel Sofer2004-05-141-0/+8
| | | | | | | * generic/tclCompile.h: the math functions receive a pointer to top of the stack (tosPtr) instead of the execution environment (eePtr). First step towards a change in the execution stack management - it is now only used within TEBC.
* TIP#143 implementation; still needs docs and more tests...dkf2004-05-131-0/+8
|
* TIP#129 implementation. Probably also much more breakage in the test suite toodkf2004-05-131-0/+6
|
* Optimisations for INST_START_CMD [Bug 926164].Miguel Sofer2004-05-121-0/+10
| | | | | | | | | * generic/tclCompile.c (TclCompileScript): avoid emitting INST_START_CMD as the first instruction in a bytecoded Tcl_Obj. It is not needed, as the checks are done before calling TEBC. * generic/tclExecute.c (TclExecuteByteCode): runtime peephole optimisation: check at INST_POP if the next instruction is INST_START_CMD, in which case we fall through.
* Added examplesdkf2004-05-111-1/+1
|
* More and deeper examples.dkf2004-05-111-0/+4
|
* documentation for glob -types d with symbolic linksvincentdarley2004-05-111-0/+5
|
* Another example and a bit more clarity.dkf2004-05-111-0/+5
|
* Added examples.dkf2004-05-101-0/+4
|
* no messagedavygrvy2004-05-101-1/+3
|
* no messagedavygrvy2004-05-101-0/+4
|
* no messagedavygrvy2004-05-101-0/+5
|
* fix to some compiler warningsvincentdarley2004-05-081-0/+5
|
* Refixed bug 789040chengyemao2004-05-081-0/+4
|
* Added yet more examples.dkf2004-05-071-0/+4
|
* correcting Changelog entryMiguel Sofer2004-05-071-1/+1
|
* * doc/unset.n: added upvar.n to the "see also" listMiguel Sofer2004-05-071-0/+4
|
* * generic/tclEncoding.c:rmax2004-05-071-0/+7
| | | | | | * tests/encoding.test: added support and tests for translating embedded null characters between real nullbytes and the internal representation on input/output (Bug #949905).
* vfs glob root volume fixvincentdarley2004-05-071-0/+9
|
* * generic/tclInt.h:Miguel Sofer2004-05-061-0/+10
| | | | | | | | | * generic/tclObj.c (TclFreeObj): made TclFreeObj use the new macro TclFreeObjMacro(), so that the allocation and freeing of Tcl_Obj is defined in a single spot (the macros in tclInt.h), with the exception of the TCL_MEM_DEBUG case. The #ifdef logic for the corresponding macros has been reformulated to make it clearer.
* More examples.dkf2004-05-051-1/+1
|
* More examples.dkf2004-05-051-0/+4
|
* * tests/unixInit.test (unixInit-2.10): Test correction for Mac OSX.dgp2004-05-051-0/+6
| | | | | Be sure to consistently compare normalized path names. Thanks to Steven Abner (tauvan). [Bug 948177]
* Remove reference to totally non-existant API. [Bug 848440]dkf2004-05-051-0/+5
|
* no messagedavygrvy2004-05-051-0/+3
|
* no messagedavygrvy2004-05-051-0/+5
|
* no messagedavygrvy2004-05-051-0/+6
|
* * tests/fileSystem.test (filesystem-1.39): replace 'file volumes'hobbs2004-05-041-2/+10
| | | | | * tests/fileName.test (filename-12.9,10): lindex with direct C:/ hard-coded because A:/ was being used and that is empty for most.
* * generic/tclAlloc.c: Make sure Tclp*Alloc* routines getdgp2004-05-041-0/+4
| | | | | * generic/tclInt.h: declared in the TCL_MEM_DEBUG and * generic/tclThreadAlloc.c: TCL_THREADS configuration. [Bug 947564]
* * tests/tcltest.test: Test corrections for Mac OSX. Thanksdgp2004-05-041-0/+5
| | | | to Steven Abner (tauvan). [Bug 947440]
* Suppress a signed-ness warning.dkf2004-05-041-0/+4
|
* * Applied [SF Tcl Patch 868853], fixing a mem leak inandreas_kupries2004-05-041-0/+6
| | | | | TtySetOptionProc. Report and Patch provided by Stuart Cassoff <stwo@users.sf.net>.
* * generic/tclProc.c (TclCreateProc): comments corrected.Miguel Sofer2004-05-041-0/+4
|
* * generic/tclCompile.c (TclCompileScript): setting the compilationMiguel Sofer2004-05-041-0/+5
| | | | namespace outside of the loop.
* * generic/tclCompile.c:Miguel Sofer2004-05-031-0/+7
| | | | | | * generic/tclInt.h: reverted fix for [Bug 926445] of 2004-04-02, restoring TCL_ALIGN to the header file. Todd Helfter reported that the macro is required by tbcload.
* * win/tclWin32Dll.c (TclpCheckStackSpace): Kevin B Kenny2004-05-031-0/+6
| | | | | * tests/stack.test (stack-3.1): Fix for undetected stack overflow in TclReExec on Windows. [Bug 947070]
* * library/init.tcl: Corrected unique prefix matching ofdgp2004-05-031-0/+5
| | | | interactive command completion in [unknown]. [Bug 946952]
* * generic/tclProc.c (TclObjInvokeProc):Miguel Sofer2004-05-021-0/+6
| | | | | * tests/proc.test (proc-3.6): fix for bad quoting of multi-word proc names in error messages [Bug 942757]
* More examplesdkf2004-04-301-1/+2
|
* More examplesdkf2004-04-301-0/+4
|
* * generic/tclInt.h: Replaced Kevin Kenny's temporarydgp2004-04-301-0/+6
| | | | | * generic/tclThreadAlloc.c: fix for Bug 945447 with a cleaner, more permanent replacement.
* * generic/tclThreadAlloc.c: Added a temporary (or so I hope!) Kevin B Kenny2004-04-301-0/+6
| | | | | inclusion of "tclWinInt.h" to avoid problems when compiling on Win32-VC++ with --enable-threads. [Bug 945447]
* More examplesdkf2004-04-301-0/+4
|
* * tests/execute.test (execute-8.2): Avoid crashes when theredgp2004-04-291-0/+5
| | | | is limited system stack space (threads-enabled).
* * doc/global.n:Miguel Sofer2004-04-281-0/+9
| | | | | | | | * doc/upvar.n: * generic/tclVar.c (ObjMakeUpvar): * tests/upvar.test (upvar-8.11): * tests/var.test (var-3.11): Avoid creation of unusable variables: [Bug 600812] [TIP 184].
* Minor docfix [Bug 943448]dkf2004-04-281-0/+4
|
* * unix/tclUnixFCmd.c (TclpObjNormalizePath): Corrected improperdgp2004-04-261-0/+5
| | | | positioning of returned checkpoint. [Bug 941108]
* Doc updates from David Welton [Patches 941377,941380]dkf2004-04-261-0/+4
|