summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* no messagedavygrvy2004-05-181-0/+5
|
* Improve the clarity of the lsearch manpage. Thanks to Peter Spjuth!dkf2004-05-181-0/+3
|
* Added support .SS macros.dkf2004-05-181-0/+3
|
* Added documentation for TIP#143 limits and a few interesting examples.dkf2004-05-181-0/+3
|
* Tests of limit-exceeded callbacks and make sure that those callbacks can removedkf2004-05-181-0/+5
| | | | the limits if they see fit (as well as extending them).
* * generic/tclExecute.c (TclExecuteByteCode): added comments toMiguel Sofer2004-05-181-0/+5
| | | | classify the variables according to their use in TEBC.
* Added exampledkf2004-05-171-1/+1
|
* Added exampledkf2004-05-171-0/+2
|
* Changed test back to what it used to be in 7.* now that [set] counts as adkf2004-05-171-0/+4
| | | | real command once again. :^)
* Improved TIP#143 tests and now track the number of bytecoded commands better.dkf2004-05-171-0/+4
|
* Example updates/additions.dkf2004-05-171-0/+5
|
* fix to case sensitive 'file executable' on Windowsvincentdarley2004-05-171-0/+6
|
* Docbug. [Bug 953374]dkf2004-05-171-0/+5
|
* (FIXED PATCH)Miguel Sofer2004-05-171-0/+5
| | | | | * generic/tclExecute.c (TclExecuteByteCode): remove one level of indirection for compiledLocals addressing.
* oops ... reverting last (buggy) commitMiguel Sofer2004-05-171-4/+0
|
* * generic/tclExecute.c (TclExecuteByteCode): remove one level ofMiguel Sofer2004-05-171-0/+4
| | | | indirection for compiledLocals addressing.
* * generic/tclExecute.c (INST_CALL_FUNC1): bugfix; restoredMiguel Sofer2004-05-161-0/+6
| | | | | (DE)CACHE_STACK_INFO pair around the call - the user defined math function could cause a recursive call to TEBC.
* * generic/tclBasic.c (Tcl_DeleteInterp):Miguel Sofer2004-05-161-1/+8
| | | | | | * generic/tclExecute.c (INST_START_CMD): interp deletion now modifies the compileEpoch, eliminating the need for the check for interp deletion in INST_START_CMD.
* * 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]