Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bugs 926106 and 1353840 | Kevin B Kenny | 2005-11-15 | 1 | -0/+11 |
| | |||||
* | Bug 1350293 | Kevin B Kenny | 2005-11-09 | 1 | -0/+5 |
| | |||||
* | * unix/tclUnixFCmd.c (MAX_READDIR_UNLINK_THRESHOLD): reduce to 130 | hobbs | 2005-11-09 | 1 | -0/+6 |
| | | | | | 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] | dgp | 2005-11-08 | 1 | -0/+2 |
| | |||||
* | * generic/tclPkg.c: Corrected inconsistencies in the value returned | dgp | 2005-11-08 | 1 | -0/+9 |
| | | | | | | | | * 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 patch | dkf | 2005-11-08 | 1 | -0/+7 |
| | |||||
* | missed Changelog entry | Miguel Sofer | 2005-11-07 | 1 | -0/+5 |
| | |||||
* | * unix/tcl.m4: Added code to enable [load] on LynxOS. Thanks to | dgp | 2005-11-04 | 1 | -0/+7 |
| | | | | | | heidibr@users.sf.net for the patch. [Bug 1163896]. * unix/configure: autoconf-2.13. | ||||
* | Bug 1298737 | Kevin B Kenny | 2005-11-04 | 1 | -0/+4 |
| | |||||
* | * win/tclWinPipe.c: Applied patch #1267871 by Matt Newman which | patthoyts | 2005-11-04 | 1 | -0/+6 |
| | | | | | * win/tclWinPort.h: provides extended error code support. * tests/exec.test: Wrote some tests for this feature. | ||||
* | Bug 1317477 | Kevin B Kenny | 2005-11-04 | 1 | -0/+7 |
| | |||||
* | * generic/tclInt.h: | Miguel Sofer | 2005-11-04 | 1 | -0/+8 |
| | | | | | | | * 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 so | dgp | 2005-11-03 | 1 | -0/+7 |
| | | | | | | 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 #1256872 | patthoyts | 2005-11-03 | 1 | -0/+6 |
| | | | | | * win/tclWinConsole.c: to give unicode console support on * win/tclWinInt.h: suitable systems (eg: NT/XP) | ||||
* | * generic/tclCmdMZ.c (TclCheckExecutionTraces): Corrected mistaken | dgp | 2005-11-01 | 1 | -0/+4 |
| | | | | | 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 restrict | dgp | 2005-11-01 | 1 | -0/+5 |
| | | | | result of left shift to the C long range. | ||||
* | * tests/expr.test: Fix problems in new round() | mdejong | 2005-10-29 | 1 | -0/+18 |
| | | | | | tests that lead to correct result only on 32 bit long systems. [Bug 1341368] | ||||
* | fix Changelog entry date | Miguel Sofer | 2005-10-29 | 1 | -1/+1 |
| | |||||
* | * generic/tclCmdMZ.c (TraceVarProc): [Bug 1337229], partial | Miguel Sofer | 2005-10-29 | 1 | -0/+10 |
| | | | | | | | | | 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/tclBasic.c: | Miguel Sofer | 2005-10-23 | 1 | -0/+22 |
| | | | | | | | | | | | | | | | | | | | | | * 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 for | Miguel Sofer | 2005-10-22 | 1 | -0/+5 |
| | | | | wide integers, [Bug 1251791]. | ||||
* | See file. | vasiljevic | 2005-10-14 | 1 | -0/+6 |
| | |||||
* | Fix [Bug 1284178] and tweak tests to accommodate. | dkf | 2005-10-13 | 1 | -0/+5 |
| | |||||
* | Temporary ifdef TCL_THREADS changes done to de-activate pending | vasiljevic | 2005-10-13 | 1 | -0/+6 |
| | | | | event processing when channel is being closed/cutted. | ||||
* | ensure MODULE_SCOPE decl | hobbs | 2005-10-10 | 1 | -0/+4 |
| | |||||
* | * unix/tclUnixFCmd.c (TraverseUnixTree): Adjust 2004-11-11 change to | hobbs | 2005-10-07 | 1 | -0/+6 |
| | | | | | * 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 Bug | andreas_kupries | 2005-10-05 | 1 | -0/+3 |
| | | | | 1109294]. Applied the patch provided by David Gravereaux. | ||||
* | * doc/CrtChannel.3: Fixed [SF Tcl Bug 1104682], by application of | andreas_kupries | 2005-10-05 | 1 | -0/+6 |
| | | | | | David Welton's patch for it, and added a note about wideSeekProc. | ||||
* | test to fix for 979640 | hobbs | 2005-10-05 | 1 | -0/+1 |
| | |||||
* | * win/tclWinPort.h: define USE_PUTENV_FOR_UNSET 1 | hobbs | 2005-10-05 | 1 | -0/+11 |
| | | | | | | | | | | * 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] | hobbs | 2005-10-05 | 1 | -0/+2 |
| | |||||
* | * tests/http.test: do not URI encode -._~ according | hobbs | 2005-10-05 | 1 | -0/+3 |
| | | | | * library/http/http.tcl (init): to RFC3986. [Bug 1182373] (aho) | ||||
* | * generic/tclIOUtil.c (TclFSNormalizeAbsolutePath): make static | hobbs | 2005-10-05 | 1 | -0/+3 |
| | | | | * generic/tclEncoding.c (TclFindEncodings): make static | ||||
* | * unix/tclLoadShl.c (TclpDlopen): use DYNAMIC_PATH on second | hobbs | 2005-10-05 | 1 | -0/+5 |
| | | | | shl_load only. [Bug 1204237] | ||||
* | See file. | vasiljevic | 2005-10-04 | 1 | -0/+9 |
| | |||||
* | * generic/tclMain.c: Separate encoding conversion of command line | dgp | 2005-09-30 | 1 | -0/+5 |
| | | | | arguments from list formatting. [Bug 1306162]. | ||||
* | Fix [Bug 1116542] | dkf | 2005-09-27 | 1 | -0/+6 |
| | |||||
* | * doc/ParseCmd.3: copy/paste fix [Bug 1292427] | Miguel Sofer | 2005-09-15 | 1 | -0/+4 |
| | |||||
* | autoconf-2.13 | dgp | 2005-09-15 | 1 | -0/+2 |
| | |||||
* | Added yet another corner-case hack, this time for RHEL3. [Bug 1287638] | dkf | 2005-09-15 | 1 | -8/+13 |
| | |||||
* | * generic/tclUtf.c (Tcl_UniCharToUtf): Corrected handling of negative | dgp | 2005-09-07 | 1 | -0/+7 |
| | | | | | | * 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]. | ||||
* | renumber expr-39.* to expr-46.* | Kevin B Kenny | 2005-08-29 | 1 | -1/+1 |
| | |||||
* | Bug 1275043 | Kevin B Kenny | 2005-08-29 | 1 | -0/+8 |
| | |||||
* | Backport of fix for [Bug 1267380] | dkf | 2005-08-25 | 1 | -0/+6 |
| | |||||
* | * generic/tclFCmd.c (TclFileMakeDirsCmd): fix to race condition in | hobbs | 2005-08-17 | 1 | -0/+5 |
| | | | | file mkdir (backport from head 2005-06-13) [Bug 1217375] | ||||
* | backport of 2005-08-10 fix to tclEvent.c | Kevin B Kenny | 2005-08-16 | 1 | -0/+7 |
| | |||||
* | Solaris mis-names the cp1251 encoding. | dkf | 2005-08-05 | 1 | -0/+6 |
| | |||||
* | fix abs(MIN_INT) [Bug 1241572] | Kevin B Kenny | 2005-08-05 | 1 | -0/+7 |
| | |||||
* | * generic/tclObj.c: Simplified routines that manage the typeTable. | dgp | 2005-08-04 | 1 | -0/+4 |
| | |||||
* | * generic/tclCompExpr.c: Untangled some dependencies in the | dgp | 2005-08-03 | 1 | -0/+7 |
| | | | | | | * generic/tclEvent.c: order of finalization routines. * generic/tclInt.h: [Bug 1251399] * generic/tclObj.c: |