summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* * win/Makefile.in: Fully qualify LIBRARY_DIR somdejong2007-03-152-2/+9
| | | | that `make test` does not depend on working dir.
* * tests/parse.test: Add two backslash newline parse tests.mdejong2007-03-152-1/+11
|
* Added test for [Bug 1675044].dgp2007-03-131-1/+18
|
* Fix documentation typospatthoyts2007-03-121-6/+6
|
* * generic/tclExecute.c (INST_FOREACH_STEP4): Make private copydgp2007-03-123-4/+23
| | | | | | * tests/foreach.test (foreach-10.1): of value list to be assigned to variables so that shimmering of that list doesn't lead to invalid pointers. [Bug 1671087]
* * generic/tclEvent.c (HandleBgErrors): Make efficient private copydgp2007-03-123-6/+33
| | | | | | * tests/event.test (event-5.3): of the command prefix for the interp's background error handling command to avoid panics due to pointers to memory invalid after shimmering. [Bug 1670155]
* * generic/tclNamesp.c (NsEnsembleImplementationCmd): Make efficientdgp2007-03-123-3/+25
| | | | | | | * tests/namespace.test (namespace-42.8): private copy of the command prefix as we invoke the command appropriate to a particular subcommand of a particular ensemble to avoid panic due to shimmering of the List intrep. [Bug 1670091]
* * generic/tclVar.c (TclArraySet): Make efficient private copy ofdgp2007-03-123-4/+25
| | | | | * tests/var.test (var-17.1): the "list" argument to [array set] to avoid crash due to shimmering invalidating pointers. [Bug 1669489].
* Fix [Bug 1679072]dkf2007-03-122-36/+51
|
* Plug a leak of encodingsdkf2007-03-121-27/+27
|
* Tightening up declaration scopes, improving some comments with xrefs to bugDBdkf2007-03-121-44/+49
|
* Fix [Bug 1675044]dkf2007-03-112-6/+24
|
* Move 'return' in TclListObjSetElement into correct place!dkf2007-03-101-31/+27
|
* * generic/tclCmdIL (Tcl_LsortObjCmd): changed fix to [Bug 1675116]Miguel Sofer2007-03-102-10/+18
| | | | to use the cheaper TclListObjCopy() instead of Tcl_DuplicateObj()
* * library/platform/shell.tcl: Made more robust if an older platformandreas_kupries2007-03-095-8/+28
| | | | | | | * library/platform/pkgIndex.tcl: package is present in the inspected * unix/Makefile.in: shell. Package forget it to prevent errors. Bumped * win/Makefile.in: package version to 1.1.3, and updated the makefiles installing it as Tcl Module.
* Fix [Bug 1675116]dkf2007-03-093-21/+38
|
* Modified test initialisation to use theKevin B Kenny2007-03-092-4/+12
| | | | | 'loadTestedCommands' function of tcltest to bring in the correct path for the registry library.
* * library/clock.tcl (ReadZoneinfoFile): Added Y2038 compliance toKevin B Kenny2007-03-093-6/+239
| | | | | | the code for version-2 'zoneinfo' files. * tests/clock.test (clock-56.3): Added a test case for Y2038 and 'zoneinfo'.
* * generic/tclListObj.c (TclLsetList): Rewrite so that the routinedgp2007-03-082-70/+32
| | | | | itself does not do any direct intrep surgery. Better isolates those things into the implementation of the "list" Tcl_ObjType.
* Moved [lindex] guts to tclListObj.c, same as [lset] guts.dkf2007-03-083-188/+195
|
* Tidy up formattingdkf2007-03-081-11/+12
|
* * library/clock.tcl: Further tweaks to the Windows time zone tableKevin B Kenny2007-03-083-147/+320
| | | | | | | | | (restoring missing Mexican time zones). Added rudimentary handling of version-2 'zoneinfo' files. Update US DST rules so that zones such as 'EST5EDT' get the correct transition dates. * tests/clock.test: Added rudimentary test cases for 'zoneinfo' parsing. Adjusted several tests that depended on obsolete US DST transition rules.
* various "const" additions in implementationnijtmans2007-03-081-20/+19
|
* * macosx/tclMacOSXNotify.c: add spinlock debugging and sanity checks.das2007-03-077-18/+90
| | | | | | | | | | * macosx/Tcl.xcodeproj/project.pbxproj: ensure gcc version used by * macosx/Tcl.xcodeproj/default.pbxuser: Xcode and configure/make are * macosx/Tcl-Common.xcconfig: consistent and independent of gcc_select default and CC env var; fixes for Xcode 3.0. * unix/tcl.m4 (Darwin): s/CFLAGS/CPPFLAGS/ in macosx-version-min check. * unix/configure: autoconf-2.59
* * generic/tclCmdIL.c (TclLindex*): Rewrites to make efficient ↵dgp2007-03-072-180/+73
| | | | | | | | | | private copies of the list and indexlist arguments, so we can operate on the list elements directly with no fear of shimmering effects. Replaces defensive coding schemes that are otherwise required. End result is that TclLindexList is entirely a wrapper around TclLindexFlat, which is now the core engine of all [lindex] operations.
* various "const" additions in implementationnijtmans2007-03-071-22/+22
|
* Add missing constraintsdgp2007-03-071-2/+2
|
* * generic/tclObj.c (Tcl_AppendAllObjTypes): Converted to simplerdgp2007-03-072-4/+8
| | | | list validity test.
* Make [regexp -about] produce its result using Tcl_Objs instead of strings.dkf2007-03-072-36/+41
|
* Minor comment cleaning updkf2007-03-071-42/+41
|
* New US DST rules on Windows; Olson's tzdata2007cKevin B Kenny2007-03-076-238/+497
|
* * library/platform/shell.tcl (::platform::shell::RUN): In the caseandreas_kupries2007-03-055-11/+21
| | | | | | | * library/platform/pkgIndex.tcl: of a failure put the captured stderr * unix/Makefile.in: into the error message to aid in debugging. Bumped * win/Makefile.in: package version to 1.1.2, and updated the makefiles installing it as Tcl Module.
* Split the ChangeLog to separate out the (static) 2005 entriesdkf2007-03-032-3814/+3823
|
* Added macro to conceal at least some of the pointer hackery.dkf2007-03-032-62/+75
|
* * generic/tclCmdIL.c (Tcl_LreverseObjCmd): Added missingdgp2007-03-023-2/+10
| | | | | TclInvalidateStringRep() call when we directly manipulate the intrep of an unshared "list" Tcl_Obj. [Bug 1672585].
* Added comments warning against certain optimizationsdgp2007-03-022-2/+19
|
* * generic/tclCmdIL.c (Tcl_JoinObjCmd): Revised [join] implementationdgp2007-03-022-20/+14
| | | | to append Tcl_Obj's instead of strings. [RFE 1669420]
* * generic/tclCmdIL.c (Info*Cmd): Code simplifications anddgp2007-03-022-28/+25
| | | | optimizations.
* D'uh! Forgot to save the ChangeLog...dkf2007-03-021-1/+1
|
* Added a scheme to allow aux-data to be printed out for debugging. For this ↵dkf2007-03-026-73/+304
| | | | | | to work, immediate operands referring to aux-data must be identified as such in the instruction descriptor table using OPERAND_AUX4 (all are always 4 bytes). Rewrote the compiled [dict update] so that it stores critical non-varying data in an aux-data value instead of a (shimmerable) literal. [Bug 1671001]
* * generic/tclCmdIL.c (Tcl_LinsertObjCmd): Code simplificationsdgp2007-03-012-15/+9
| | | | and optimizations.
* * generic/tclCmdIL.c (Tcl_LreplaceObjCmd): Code simplificationsdgp2007-03-012-19/+8
| | | | and optimizations.
* Remove line with no effectdgp2007-03-011-2/+1
|
* * generic/tclCmdIL.c (Tcl_LrangeObjCmd): Rewrite in the samedgp2007-03-012-47/+27
| | | | spirit; avoid shimmer effects rather than react to them.
* * generic/tclCmdAH.c (Tcl_ForeachObjCmd): Stop throwing awaydgp2007-03-013-8/+15
| | | | | * tests/foreach.test (foreach-1.14): useful error information when loop variable sets fail.
* * generic/tclCmdIL.c (Tcl_LassignObjCmd): Rewrite to make andgp2007-03-012-63/+33
| | | | | | efficient private copy of the list argument, so we can operate on the list elements directly with no fear of shimmering effects. Replaces defensive coding schemes that are otherwise required.
* * generic/tclCmdAH.c (Tcl_ForeachObjCmd): Rewrite to makedgp2007-03-012-26/+34
| | | | | efficient private copies of the variable and value lists, so we can operate on them without any special shimmer defense coding schemes.
* Fix [Bug 1671138]dkf2007-03-013-30/+56
|
* typodgp2007-02-281-1/+1
|
* A few more very minor changesdkf2007-02-271-20/+11
|