summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* More fixingdkf2005-09-081-17/+17
| | | FossilOrigin-Name: 17cb3cd5986bdfe0ce0a81605c8e7dd673627c2d
* A bit more fixing...dkf2005-09-081-15/+17
| | | FossilOrigin-Name: 1701251b0b6e27dc175b14f84c9da204a0aa6c84
* First step to fixing test suitedkf2005-09-081-20/+20
| | | FossilOrigin-Name: 88e192f51ccb86e65593be4bf845903c49c499b5
* Oops!dkf2005-09-081-19/+19
| | | FossilOrigin-Name: 7ac67d7fe8ad29bbbb07268f51a480ebc5af275c
* Added support machinery for TIP#254 testsdkf2005-09-082-9/+271
| | | FossilOrigin-Name: 4a5309ec6e2793e0c5ee682429825505f4d35b27
* TIP #254 implementationdkf2005-09-084-967/+1233
| | | | | | Still missing additional tests. FossilOrigin-Name: 62727c5bbe851fb74c0b29d6254b855684ab849f
* * generic/tclUtf.c (Tcl_UniCharToUtf): Corrected handling of negativedgp2005-09-073-37/+49
| | | | | | | | * tests/utf.test (utf-1.5): Tcl_UniChar input value. Incorrect handling was producing byte sequences outside of Tcl's legal internal encoding. [Bug 1283976]. FossilOrigin-Name: c76f2a19660533f3e1778ae865628f8fb35dc006
* Add flag to lists so that evaluating contexts can handle them efficiently muchdkf2005-09-066-964/+1071
| | | | | | | of the time even when they are not pure. The flag works by keeping track of when the string rep was derived from the internal rep. FossilOrigin-Name: 3f8b25f1a3a66ee97ca6a4718cdafba2c593af04
* Make symbol static to stop it from being visible outside the Tcl library ondkf2005-09-052-2/+7
| | | | | | traditional Unix platforms. [Bug 1263012] FossilOrigin-Name: e889426f5ce2616683521711e71114642beeffd4
* * unix/tclUnixSock.c (InitializeHostName): Synchronized use ofandreas_kupries2005-09-027-13/+37
| | | | | | | | | | | | | | | | | | | | | | | | | static modifier in declaration and definition of function. * unix/tclUnixChan.c (FileTruncateProc): Synchronized use of static modifier in declaration and definition of function. * generic/tclResult.c (ReleaseKeys): Synchronized use of static modifier in declaration and definition of function. * generic/tclListObj.c (NewListIntRep): Synchronized use of static modifier in declaration and definition of function. * generic/tclEncoding.c (InitializeEncodingSearchPath): Synchronized use of static modifier in declaration and definition of function. * generic/tclEncoding.c (FillEncodingFileMap): Synchronized use of static modifier in declaration and definition of function. * generic/tclIORChan.c (RcNewHandle): Synchronized use of static modifier in declaration and definition of function. FossilOrigin-Name: 5b652caf778a9ddb208ca2f07ce55c65fc33d061
* fix datevincentdarley2005-08-311-1/+1
| | | FossilOrigin-Name: b5831068b5db97fbba3ef2f30daa87601d3a183c
* allow NULL interp in Tcl_FSMatchInDirectoryvincentdarley2005-08-315-18/+34
| | | FossilOrigin-Name: 5139fcec81092f6d0fbdcccc79baeab183f41857
* * library/tm.tcl (::tcl::tm::roots): Accepted Don Porter's patchandreas_kupries2005-08-293-3/+9
| | | | | | | for [Tcl SF Bug 1189657]. Syncs the implementation to the specification (TIP #189). FossilOrigin-Name: 0ef4ca308707c779572bb109507905ffb004b41d
* renumber expr-39.* to expr-46.*kennykb2005-08-292-14/+14
| | | FossilOrigin-Name: 484771b6201f1e1b6b25215af32c23179bbd97ae
* fix test case bracing and numberingkennykb2005-08-291-10/+10
| | | FossilOrigin-Name: 7bbdf4ca4c671eda8bbd0b06dddd563a14b7b885
* removed inappropriate swizzling of tcl_precisionkennykb2005-08-291-3/+1
| | | FossilOrigin-Name: e593e8320ef2d9a094a609870ed6fe5eb74e1682
* Bug 1275043kennykb2005-08-293-17/+111
| | | FossilOrigin-Name: 7e8177ac9df87d586085c8af0e441f28d7d19750
* * generic/tclIO.c: Moved Tcl_{Cut,Splice}Channel toandreas_kupries2005-08-263-10/+164
| | | | | | | | | | | {Cut,Splice}Channel for internal use, and created new public functions for Tcl_{Cut,Splice}Channel which walk the whole stack of transformations and invoke the necessary thread actions. Added code to Tcl_(Un)StackChannel to properly invoke the thread actions when pushing and popping transformations on/from a channel. FossilOrigin-Name: fd26ccea747d6aaf886aec2f93cdf42d91135ac5
* Style systematization and _ANSI_ARGS_ removaldkf2005-08-261-1423/+1335
| | | FossilOrigin-Name: 043072b9bc9b03733cbe1da2a8df676c26afb7a1
* Remove _ANSI_ARGS_dkf2005-08-261-20/+18
| | | FossilOrigin-Name: 63474c1c0a99a602d81606c37d71df85da7d448b
* More whitespace cleansing and _ANSI_ARGS_ purgingdkf2005-08-263-522/+445
| | | FossilOrigin-Name: 94354fd3e62de60799d3839b1af93679faf22143
* Remove _ANSI_ARGS_ and tidy up commentsdkf2005-08-261-236/+208
| | | FossilOrigin-Name: 03e5c68cf3f3683b96bdd2459183c7e4cefd98d8
* Fix crashes when running Snit's test suite caused by traces forcing the interpdkf2005-08-262-2/+12
| | | | | | result object to become shared. FossilOrigin-Name: 2de91b1d0b44c52035d5004e7293174a023389f8
* Better to panic sanely than to crash with a bad memory access. [Bug 1267380]dkf2005-08-252-1/+11
| | | FossilOrigin-Name: 687e384a0d728f204b2be9de94ca202031935b22
* Fix memory leak caused by throwing away a duplicated objectdkf2005-08-252-12/+17
| | | FossilOrigin-Name: b518cfe46722e4fa71b57fe8d45d4667c4522e86
* Remove extra blank lines between tests so groups go together better.dkf2005-08-241-220/+1
| | | FossilOrigin-Name: aecf511a5980da428ff9cc4a3f1c2b2d746507e4
* TIP#219 IMPLEMENTATIONandreas_kupries2005-08-2420-89/+7028
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/SetChanErr.3: ** New File **. Documentation of the new channel API functions. * generic/tcl.decls: Stub declarations of the new channel API. * generic/tclDecls.h: Regenerated * generic/tclStubInit.c: * tclIORChan.c: ** New File **. Implementation of the reflected channel. * generic/tclInt.h: Integration of reflected channel and new error * generic/tclIO.c: propagation into the generic I/O core. * generic/tclIOCmd.c: * generic/tclIO.h: * library/init.tcl: * tests/io.test: Extended testsuite. * tests/ioCmd.test: * tests/chan.test: * generic/tclTest.c: * generic/tclThreadTest.c: * unix/Makefile.in: Integration into the build machinery. * win/Makefile.in: * win/Makefile.vc: FossilOrigin-Name: d936ddccf8636a3ce65f75ce4732b434bb0a4b73
* fix formatting of fp number with smallest significandkennykb2005-08-243-3/+106
| | | FossilOrigin-Name: 7c355ef822d4c536791c88819feab4e85ffd297b
* * unix/configure.in:mdejong2005-08-234-10/+11
| | | | | | | | * win/configure: Regen. * win/configure.in: Update minimum autoconf version to 2.59. FossilOrigin-Name: 5ba298340cae50320db584a9f92aa26fb845327a
* * unix/tclConfig.h.in: autoheader-2.59.das2005-08-222-11/+6
| | | FossilOrigin-Name: d3b5566cd99233bff93e743406fd9e583e6effd5
* updated entry with another clashgeorgeps2005-08-171-0/+3
| | | FossilOrigin-Name: 391950cb5953c94d3d888bba9e901af756a35bd8
* fix a namespace clash with pendingObjData.georgeps2005-08-171-2/+2
| | | FossilOrigin-Name: 01ee20315e921404dd4635a2e9482ea55b407e1d
* new entry. fixed the dates on KBK's entries.georgeps2005-08-171-3/+8
| | | FossilOrigin-Name: 3c0ad8e2bc6d0780d6461133767aa898cb6061f0
* Added static to prevent a namespace clash with BuiltinFuncTable.georgeps2005-08-171-2/+2
| | | FossilOrigin-Name: d812e451ee98708ac95b6098c90ed097c6f62f67
* fixed bad clock test, removed duplicated code in Tcl_Finalizekennykb2005-08-173-41/+26
| | | FossilOrigin-Name: 08b64cd45157b385dff5db093140662f3d2689ea
* Changed message catalog file names to lowercasekennykb2005-08-1767-0/+0
| | | FossilOrigin-Name: b5ab97f9e1a4ebd278ba6e4bf66bef0ac662a18f
* added /usr/lib/zoneinfo for antique glibckennykb2005-08-121-1/+2
| | | FossilOrigin-Name: 9ae2ab8c1fadea8eeb23fb61edcf4cbb154de597
* bug 1257830kennykb2005-08-124-21/+72
| | | FossilOrigin-Name: 5e29d06ce18320850b1dd9fb153d50c8be5c125f
* regen unix/configurekennykb2005-08-111-994/+2421
| | | FossilOrigin-Name: 25d2e6dbfe1ec55a834d6322dd581ecb1eef535d
* radical refactoring of thread storage to untangle dependencieskennykb2005-08-1113-1433/+694
| | | FossilOrigin-Name: be83fe62c89c349c41a2abec886f77ad1c24a15b
* further untangling of Tcl_Finalize, and test cleanup on Win32 threadedkennykb2005-08-104-23/+38
| | | FossilOrigin-Name: 2570ab920474d4e6c4f0a4caf2340e3f48f1ed14
* Squelch a message about an unused variable.dkf2005-08-091-9/+8
| | | FossilOrigin-Name: 5a1163b410fc8d6c833e0acea8ebf1ac26fc968c
* More informative comment.dkf2005-08-091-2/+6
| | | FossilOrigin-Name: 20881bdebd7b34745bd6ddee537bad023b84dbac
* added nul-termination missing from earlier commit todaydgp2005-08-091-1/+2
| | | FossilOrigin-Name: 5ad0425206f6d9f25ea6ff46bd402c041abceedd
* file rootname bug fixvincentdarley2005-08-082-2/+10
| | | FossilOrigin-Name: 039fc09fcf9636d328841b2d46ac094269ac1952
* remove obsolete commentdgp2005-08-081-2/+1
| | | FossilOrigin-Name: 3bda2ae6802eef391a20e7c3ffc6d227d556a31a
* regendkf2005-08-052-154/+54
| | | FossilOrigin-Name: e6625ce0bfdde604c34f7d4e37953062f07347f8
* Stop exposing the thread storage guts. Non-core code should never touch it.dkf2005-08-054-158/+131
| | | FossilOrigin-Name: 4d67a86a0a3dafe031e798b26155e20f8a459ec1
* Typo (spotted by George Staplin)dkf2005-08-051-2/+2
| | | FossilOrigin-Name: c35f167f8ac26e0b68eb22dbe44a603d4313590f
* Solaris mis-names the cp1251 encoding.dkf2005-08-052-8/+15
| | | FossilOrigin-Name: 572927055157aebba1319c925eacfa907ad629b6