summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * README: Bump version number to 8.4.12dgp2005-11-1610-16/+29
| | | | | | | | | | | | * generic/tcl.h: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf-2.13 * win/configure:
* * changes: Update changes for 8.4.12 releasedgp2005-11-152-2/+91
|
* Bump to http 2.5.2 to cover changing rules in [http::mapReply] [1182373]dgp2005-11-152-3/+3
|
* Bugs 926106 and 1353840Kevin B Kenny2005-11-153-61/+109
|
* Bug 1350293Kevin B Kenny2005-11-093-15/+19
|
* doc changes with 1162286 fixdgp2005-11-091-8/+1
|
* * unix/tclUnixFCmd.c (MAX_READDIR_UNLINK_THRESHOLD): reduce to 130hobbs2005-11-092-3/+9
| | | | | based on errors seen on OS X 10.3 with lots of links in a dir. [Bug 1034337 followup]
* * tests/expr.test: Portable tests expr-46.13-18 [Bug 1341368]dgp2005-11-082-25/+15
|
* * generic/tclPkg.c: Corrected inconsistencies in the value returneddgp2005-11-084-38/+298
| | | | | | | | * tests/pkg.test: by Tcl_PkgRequire(Ex) so that the returned values will always agree with what is stored in the package database. This way repeated calls to Tcl_PkgRequire(Ex) have the same results. Thanks to Hemang Lavana. [Bug 1162286]. * tests/namespace.test (25.7,8): Backport test of knownBug.
* Fix [Bug 1348775] using Miguel's patchdkf2005-11-082-17/+51
|
* missed Changelog entryMiguel Sofer2005-11-071-0/+5
|
* * tests/trace.test (trace-13.2-4): added tests to detect leak, see [BugMiguel Sofer2005-11-071-2/+56
| | | | 1348775].
* * unix/tcl.m4: Added code to enable [load] on LynxOS. Thanks todgp2005-11-043-281/+312
| | | | | | heidibr@users.sf.net for the patch. [Bug 1163896]. * unix/configure: autoconf-2.13.
* Bug 1298737Kevin B Kenny2005-11-043-2/+12
|
* * win/tclWinPipe.c: Applied patch #1267871 by Matt Newman whichpatthoyts2005-11-044-18/+65
| | | | | * win/tclWinPort.h: provides extended error code support. * tests/exec.test: Wrote some tests for this feature.
* Bug 1317477Kevin B Kenny2005-11-042-12/+27
|
* * generic/tclInt.h:Miguel Sofer2005-11-045-55/+189
| | | | | | | * generic/tclNamesp.c: * generic/tclVar.c: fix for [Bugs 1338280/1337229]. Thanks Don. * tests/trace.test: fix duplicate test numbers
* * generic/tclUnixInit.c (TclpSetInitialEncodings): Modified sodgp2005-11-032-2/+10
| | | | | | that multiple calls can continue to atttempt to properly set the system encoding. Needed for Tclkit to properly support non-default encodings. Thanks to Yaroslav Schekin. [Bug 1201171].
* * win/tclWin32Dll.c: Backported Anton Kovalenko's patch #1256872patthoyts2005-11-034-11/+102
| | | | | * win/tclWinConsole.c: to give unicode console support on * win/tclWinInt.h: suitable systems (eg: NT/XP)
* * generic/tclCmdMZ.c (TclCheckExecutionTraces): Corrected mistakendgp2005-11-012-14/+20
| | | | | assumption that all command traces are set at the script level. Report/fix from Jacques H. de Villiers. [Bug 1337941]
* * tests/expr-old.test (expr-32.52): Use int(.) to restrictdgp2005-11-012-2/+7
| | | | result of left shift to the C long range.
* * tests/expr.test: Fix problems in new round()mdejong2005-10-292-25/+47
| | | | | tests that lead to correct result only on 32 bit long systems. [Bug 1341368]
* fix Changelog entry dateMiguel Sofer2005-10-291-1/+1
|
* fix new test trace-18.4 [Bug 1338280]Miguel Sofer2005-10-291-6/+9
|
* * generic/tclCmdMZ.c (TraceVarProc): [Bug 1337229], partialMiguel Sofer2005-10-293-5/+34
| | | | | | | | | fix. Insure that a second call with TCL_TRACE_DESTROYED does not lead to a second call to Tcl_EventuallyFree(). It is still true that that second call should not happen, so the bug is not completely fixed. * tests/trace.test (test-18.3-4): added tests for bugs #1337229 and 1338280.
* * generic/tclExecute.c (ExprRoundFunc):mdejong2005-10-283-11/+35
| | | | | | | | | | | Fix typo where number before rounding is compared with smallest integer instead of number after rounding. This fix does not change the results of any tests. * tests/expr.test: Add round() tests for cases near the min and max int values. * tests/util.test: Remove pointless warning code about testobj command.
* * generic/tclBasic.c:Miguel Sofer2005-10-2316-79/+154
| | | | | | | | | | | | | | | | | | | | | * generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclExecute.c: * generic/tclLink.c: * generic/tclMain.c: * generic/tclProc.c: * generic/tclScan.c: * generic/tclTest.c: * generic/tclVar.c: * mac/tclMacInit.c: * unix/tclUnixInit.c: * win/tclWinInit.c: Insure that the core never calls TclPtrSetVar, Tcl_SetVar2Ex, Tcl_ObjSetVar2 or Tcl_SetObjErrorCode with a 0-ref new value. It is not possible to handle error returns correctly in that case [Bug 1334947], one has the choice of leaking the object in some cases, or else risk crashing in some others.
* * generic/tclExecute.c (INST_CONCAT): disable the optimisation forMiguel Sofer2005-10-222-3/+10
| | | | wide integers, [Bug 1251791].
* See file.vasiljevic2005-10-141-0/+6
|
* Backed off change from 2005-10-04 (see ChangeLog and Tcl Bug# 1323992vasiljevic2005-10-141-14/+2
| | | | for more info.
* Fix [Bug 1284178] and tweak tests to accommodate.dkf2005-10-133-7/+20
|
* Added some more clarifying comments in Tcl_ClearChannelHandlers()vasiljevic2005-10-131-6/+5
|
* Temporary ifdef TCL_THREADS changes done to de-activate pendingvasiljevic2005-10-132-1/+14
| | | | event processing when channel is being closed/cutted.
* ensure MODULE_SCOPE declhobbs2005-10-102-1/+18
|
* * unix/tclUnixFCmd.c (TraverseUnixTree): Adjust 2004-11-11 change tohobbs2005-10-073-46/+69
| | | | | * 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-052-7/+14
| | | | 1109294]. Applied the patch provided by David Gravereaux.
* * doc/CrtChannel.3: Fixed [SF Tcl Bug 1104682], by application ofandreas_kupries2005-10-052-8/+16
| | | | | David Welton's patch for it, and added a note about wideSeekProc.
* test to fix for 979640hobbs2005-10-052-13/+9
|
* * win/tclWinPort.h: define USE_PUTENV_FOR_UNSET 1hobbs2005-10-053-15/+46
| | | | | | | | | | * 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-052-424/+431
|
* * tests/http.test: do not URI encode -._~ accordinghobbs2005-10-053-6/+13
| | | | * library/http/http.tcl (init): to RFC3986. [Bug 1182373] (aho)
* * generic/tclIOUtil.c (TclFSNormalizeAbsolutePath): make statichobbs2005-10-053-6/+9
| | | | * generic/tclEncoding.c (TclFindEncodings): make static
* * unix/tclLoadShl.c (TclpDlopen): use DYNAMIC_PATH on secondhobbs2005-10-052-6/+10
| | | | shl_load only. [Bug 1204237]
* See file.vasiljevic2005-10-041-0/+9
|
* Tcl_ClearChannelHandlers(): now deletes any outstandingvasiljevic2005-10-041-2/+14
| | | | | timer for the channel. Also, prevents events still in the event queue from triggering on the current channel.
* Tcl_ClearChannelHandlers(): bail out early if passed NULL argumentvasiljevic2005-10-041-3/+6
|
* * generic/tclMain.c: Separate encoding conversion of command linedgp2005-09-302-26/+28
| | | | arguments from list formatting. [Bug 1306162].
* Fix [Bug 1116542]dkf2005-09-273-3/+29
|
* * doc/ParseCmd.3: copy/paste fix [Bug 1292427]Miguel Sofer2005-09-152-2/+6
|
* autoconf-2.13dgp2005-09-152-229/+280
|