summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [Patch 2892871]: Remove unneeded AC_STRUCT_TIMEZONE and usestwo2009-11-256-285/+19
| | | | AC_CHECK_MEMBERS([struct stat.st_blksize]) instead of AC_STRUCT_ST_BLKSIZE.
* * library/tclIndex: Manually redone the part of tclIndex dealingandreas_kupries2009-11-242-16/+20
| | | | | | | | | | | | | | | with safe.tcl and tm.tcl. This part passes the testsuite. Note that automatic regeneration of this part is not possible because it wrongly puts 'safe::Setup' on the list, and wrongly leaves out 'safe::Log' which is more dynamically created than the generator expects. Further note that the file "clock.tcl" is explicitly loaded by "init.tcl", the first time the clock command is invoked. The relevant code can be found at line 172ff, roughly, the definition of the procedure 'clock'. This means none of the procedures of this file belong in the tclIndex. Another indicator that automatic regeneration of tclIndex is ill-advised.
* Restore tcl/library/tclIndex to Revision 1.11 contents, to stop total breakagedgp2009-11-242-73/+24
| | | | | | | of auto-loading in slave interps. Feel free to commit a new bug fix when you can commit something that passes the test suite.
* Ensure that destroying an object in a constructor doesn't crash. [Bug 2903011]dkf2009-11-243-25/+92
|
* [Bug 2893771] Teach [file stat] to handle locked files.patthoyts2009-11-243-23/+55
| | | | | This stops [file exists] from returning false for files that exist but are locked by resorting to FindFirstFile when GetFileAttributes fails.
* library/tclIndex (regenerated) to reflect various changesnijtmans2009-11-232-24/+73
| | | | in safe.tcl and other library files.
* * tests/fCmd.test (fCmd-30.1): Changed registry location of theKevin B Kenny2009-11-232-2/+9
| | | | | | 'My Documents' folder to the one that's correct for Windows 2000, XP, Server 2003, Vista, Server 2008, and Windows 7. (See http://support.microsoft.com/kb/310746)
* makefile.vc: Add stub library to necessary link linesnijtmans2009-11-232-3/+4
|
* Test constraint 2000orNewer should only be true on Windows platformdgp2009-11-231-2/+2
|
* #undef STATIC_BUILD in tclWin(Dde|Reg).c, in order to makenijtmans2009-11-2310-199/+137
| | | | | | | | | | | sure that Xxxxx_Init is always exported even when Tcl is built static (otherwise we cannot create a DLL). tclThreadTest.c: Make all functions static, except TclThread_Init. fCmd.test Enable fCmd-30.1 when registry is available. tcl.m4 Fix ${SHLIB_LD_LIBS} definition, fix conflicts configure.in between static libraries and import library on windows. configure (regenerated) Makefile.in Simplifications related to tcl.m4 changes.
* * generic/tclThreadTest.c (NewTestThread): [Bug 2901803]Kevin B Kenny2009-11-232-2/+8
| | | | | Further machinations to get NewTestThread actually to launch the thread, not just compile.
* [Bug 2901803]: Fix silly error.dkf2009-11-232-59/+68
|
* Added some OSX-specific thingsdkf2009-11-221-0/+2
|
* Cast required when setting result using a const string. String is copied by ↵patthoyts2009-11-211-2/+2
| | | | TCL_VOLATILE.
* a bit of cleanupdgp2009-11-203-20/+21
|
* [Tcl Patch #2883533] tcl.m4 support for Haiku OSnijtmans2009-11-194-3/+92
|
* Updated freeIntRepProc routines sonijtmans2009-11-192-2/+9
| | | | | | | that they set the typePtr field to NULL so that the Tcl_Obj is not left in an inconsistent state. [Bug 2857044]
* Create tcltest86.dll as dynamic Tcltest packagenijtmans2009-11-192-15/+24
|
* Test-case for fixed [Bug 2849797]nijtmans2009-11-195-18/+26
| | | | | | Fix safe-10.1 and safe-10.4 test cases, making the wrong assumption that Tcltest should be a static package.
* * unix/tclAppInit.c: Repair broken build of the tcltest executable.dgp2009-11-193-16/+11
| | | | * win/tclAppInit.c: [Bug 2883850, 2900542].
* Undo Jan's needless vandalism.dkf2009-11-196-19/+28
|
* Add files to .cvsignorenijtmans2009-11-183-0/+11
|
* Fix [Bug 2883850]: pkgIndex.tcl doesn'tnijtmans2009-11-1817-89/+190
| | | | get created with static Tcl build
* Fix [Bug 2849797]: channel name inconsistencies as suggested by DKFnijtmans2009-11-184-9/+25
| | | | | | minor *** POTENTIAL INCOMPATIBILITY *** because Tcl_CreateChannel() and its derivatives, now sometimes ignore their "chanName" argument.
* Eliminate unneccessary spacesnijtmans2009-11-182-4/+5
|
* Eliminate various gcc warnings (in -Wextra mode)nijtmans2009-11-182-4/+3
|
* Eliminate various gcc warnings (in -Wextra mode)nijtmans2009-11-1821-172/+199
|
* Eliminate unneccessary spacesnijtmans2009-11-189-49/+57
|
* Eliminate "then" keywordnijtmans2009-11-187-125/+133
|
* Fix [Bug 2891171]: URL checking too strict when using multiple question ↵nijtmans2009-11-181-2/+2
| | | | marks (added test case)
* formatdgp2009-11-171-3/+3
|
* * unix/tclUnixChan.c (TtyParseMode): Partial undo of Donal's tidy-andreas_kupries2009-11-172-5/+16
| | | | | | up from a few days ago (2009-11-9, not in ChangeLog). strchr is apparently a macro on AIX and reacts badly to pre-processor directives in its arguments.
* Use proper command creation routine.dgp2009-11-161-2/+2
|
* Revert mistaken commitdgp2009-11-1612-193/+50
|
* (forward port) Fix [Bug 2891556] and improve test to detect similar ↵ferrieux2009-11-1616-59/+270
| | | | manifestations in the future. Add tcltest support for finalization.
* * win/tclWinDde.c: Avoid gcc compiler warning bymdejong2009-11-162-5/+10
| | | | explicitly casting DdeCreateStringHandle argument.
* * generic/tclIO.c (CopyData): [Bug 2895565]. Dropped bogosityandreas_kupries2009-11-123-10/+51
| | | | | | * tests/io.test: which used the number of _written_ bytes or character to update the counters for the read bytes/characters. New test io-53.11. This is a forward port from the 8.5 branch.
* * generic/tclClock.c (TclClockInit): Do not create [clock] supportdgp2009-11-122-1/+15
| | | | commands in safe interps.
* Fix [Bug 2891171]: URL checking too strict when using multiple question marksnijtmans2009-11-115-24/+33
|
* Fix [Bug 2888099] (close discards ENOSPC error) by saving the errnoferrieux2009-11-102-2/+24
| | | | | from the first of two FlushChannel()s. Uneasy to test; might need specific channel drivers. Four-hands with aku.
* * generic/tclBasic.c: Plug another leak in TCL_EVAL_DIRECTandreas_kupries2009-11-102-10/+14
| | | | | evaluation. Forward port from Tcl 8.5 branch, change by Don Porter.
* Cleanup directories that have been set chmod 000.patthoyts2009-11-102-10/+40
| | | | | | | | | On Windows7 and Vista we really have no access and these were getting left behind. A few tests were changed to reflect the intent of the test where setting a directory chmod 000 should prevent any modification. This restriction was ignored on XP but is honoured on Vista
* * generic/tclObj.c: Plus memory leak in TclContinuationsEnter().andreas_kupries2009-11-103-3/+20
| | | | | [Bug 2895323]. Forward port from Tcl 8.5 branch, change by Don Porter.
* Removed outdated Msys + Mingw info.stwo2009-11-092-12/+7
|
* * tests/info.test: Resolve ambiguous resolution of variableandreas_kupries2009-11-092-2/+5
| | | | "res". Forward port from 8.5
* * generic/tclBasic.c (TclEvalObjEx): Moved the #280 decrement ofandreas_kupries2009-11-092-8/+15
| | | | | | | refCount for the file path out of the branch after the whole conditional, closing a memory leak. Added clause on structure type to prevent seg.faulting. Forward port from valgrinding the Tcl 8.5 branch.
* Some small bits of tidying up.dkf2009-11-093-154/+153
|
* Moved the descriptions of the index formats to their own section, anddkf2009-11-081-31/+35
| | | | added a warning to the 'bytelength' subcommand about future compatibility.
* Moved the descriptions of the index formats to their own section, anddkf2009-11-081-61/+75
| | | | added a warning to the 'bytelength' subcommand about future compatibility.
* Formatting correctiondkf2009-11-081-3/+3
|