Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * generic/tclStrToD.c: Correct conditional compile directives to | dgp | 2009-12-07 | 2 | -4/+11 |
| | | | | | better detect the toolchain that needs extra work for proper underflow treatment instead of merely detecting the mips platform. [Bug 2902010]. | ||||
* | * generic/tclBasic.c: add ::tcl::unsupported::yieldTo | Miguel Sofer | 2009-12-07 | 3 | -6/+73 |
| | | | | * generic/tclInt.h: [Patch 2910056] | ||||
* | Plug memory leak. [Bug 2910044] | dkf | 2009-12-07 | 3 | -2/+80 |
| | |||||
* | missing declaration | Miguel Sofer | 2009-12-07 | 1 | -1/+2 |
| | |||||
* | factoring TclSpliceTailcall out of TclPopStackFrame | Miguel Sofer | 2009-12-06 | 4 | -48/+59 |
| | |||||
* | oops - test error due to deletion of now not-created namespace | Miguel Sofer | 2009-12-06 | 1 | -6/+1 |
| | |||||
* | clear old junk in tests/coroutine.test: | Miguel Sofer | 2009-12-06 | 2 | -41/+2 |
| | |||||
* | * generic/tclBasic.c: Small changes for clarity in tailcall | Miguel Sofer | 2009-12-06 | 3 | -17/+45 |
| | | | | * generic/tclExecute.c: and coroutine code. | ||||
* | missing changelog entry | Miguel Sofer | 2009-12-06 | 1 | -1/+4 |
| | |||||
* | * tests/tailcall.test: remove some old unused crud; improved the | Miguel Sofer | 2009-12-05 | 1 | -27/+28 |
| | | | | stack depth tests. | ||||
* | * generic/tclBasic.c: Fixed things so that you can tailcall | Miguel Sofer | 2009-12-05 | 5 | -5/+55 |
| | | | | | | | | * generic/tclNamesp.c: properly out of a coroutine. * tests/tailcall.test: * generic/tclInterp.c: Fixed tailcalls for same-interp aliases (no test) | ||||
* | Fix [Bug 2906841] and a few other smaller issues. | dkf | 2009-12-03 | 3 | -298/+341 |
| | |||||
* | tools/genStubs.tcl Add support for win32 CALLBACK functions | nijtmans | 2009-12-02 | 3 | -102/+31 |
| | | | | | | | and remove obsolete "emitStubs" and "genStubs" functions. win/Makefile.in Use tcltest86.dll for all tests, and add .PHONY rules to preemptively stop trouble that plagued Tk from hitting Tcl too. | ||||
* | tcl.h Don't use EXPORT for Tcl_InitStubs | nijtmans | 2009-11-30 | 3 | -30/+39 |
| | | | | win/Makefile.in Better dependancies in case of static build. | ||||
* | [Bug 2901433]: Improved description of {*} syntax. | dkf | 2009-11-30 | 2 | -12/+18 |
| | |||||
* | revert 2902965 tclAppInit.c change | das | 2009-11-29 | 1 | -5/+1 |
| | |||||
* | reverted 2902965 changes that broke static builds on OSX | das | 2009-11-29 | 3 | -6/+6 |
| | |||||
* | * win/tclAppInit.c (Tcl_AppInit): Reverted Jan's change that added | Kevin B Kenny | 2009-11-27 | 2 | -5/+9 |
| | | | | | | | a call to Tcl_InitStubs. 'tclsh' and 'tcltest' are providers, not consumers of the Stubs table, and should not link with the Stubs library, but only with the main Tcl library. (In any case, the presence of Tcl_InitStubs broke the build.) [Bug 2902965] | ||||
* | [Patch 2903921]: Many small spelling fixes from Larry Virden. | dkf | 2009-11-27 | 18 | -50/+60 |
| | |||||
* | Match the version-bump of TclOO. | dkf | 2009-11-27 | 5 | -8/+12 |
| | |||||
* | [Bug 2903811]: Remove unneeded restrictions on usefully calling the | dkf | 2009-11-27 | 3 | -9/+45 |
| | | | | oo::object->variable method. Leaving it hidden is enough. | ||||
* | autoheader-2.59 | das | 2009-11-26 | 1 | -3/+0 |
| | |||||
* | fix warning on LP64 | das | 2009-11-26 | 1 | -1/+5 |
| | |||||
* | Add .PHONY rules and documentation to preemptively stop trouble that plagued | dkf | 2009-11-26 | 2 | -88/+149 |
| | | | | | Tk from hitting Tcl too, and to make the overall makefile easier to understand. Some reorganization too to move related rules closer together. | ||||
* | Fix [Bug 2902965] stub related changes | nijtmans | 2009-11-26 | 1 | -1/+1 |
| | | | | cause tclkit built to break | ||||
* | Fix [Bug 2902965] stub related changes | nijtmans | 2009-11-26 | 8 | -26/+47 |
| | | | | cause tclkit built to break | ||||
* | * win/Makefile.in: Added a 'test-tcl' rule that is identical | Kevin B Kenny | 2009-11-25 | 2 | -2/+10 |
| | | | | | to 'test' except that it does not go spelunking in 'pkgs/'. (This rule has existed in unix/Makefile.in for some time.) | ||||
* | [Patch 2892871]: Remove unneeded AC_STRUCT_TIMEZONE and use | stwo | 2009-11-25 | 6 | -285/+19 |
| | | | | AC_CHECK_MEMBERS([struct stat.st_blksize]) instead of AC_STRUCT_ST_BLKSIZE. | ||||
* | * library/tclIndex: Manually redone the part of tclIndex dealing | andreas_kupries | 2009-11-24 | 2 | -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 breakage | dgp | 2009-11-24 | 2 | -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] | dkf | 2009-11-24 | 3 | -25/+92 |
| | |||||
* | [Bug 2893771] Teach [file stat] to handle locked files. | patthoyts | 2009-11-24 | 3 | -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 changes | nijtmans | 2009-11-23 | 2 | -24/+73 |
| | | | | in safe.tcl and other library files. | ||||
* | * tests/fCmd.test (fCmd-30.1): Changed registry location of the | Kevin B Kenny | 2009-11-23 | 2 | -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 lines | nijtmans | 2009-11-23 | 2 | -3/+4 |
| | |||||
* | Test constraint 2000orNewer should only be true on Windows platform | dgp | 2009-11-23 | 1 | -2/+2 |
| | |||||
* | #undef STATIC_BUILD in tclWin(Dde|Reg).c, in order to make | nijtmans | 2009-11-23 | 10 | -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 Kenny | 2009-11-23 | 2 | -2/+8 |
| | | | | | Further machinations to get NewTestThread actually to launch the thread, not just compile. | ||||
* | [Bug 2901803]: Fix silly error. | dkf | 2009-11-23 | 2 | -59/+68 |
| | |||||
* | Added some OSX-specific things | dkf | 2009-11-22 | 1 | -0/+2 |
| | |||||
* | Cast required when setting result using a const string. String is copied by ↵ | patthoyts | 2009-11-21 | 1 | -2/+2 |
| | | | | TCL_VOLATILE. | ||||
* | a bit of cleanup | dgp | 2009-11-20 | 3 | -20/+21 |
| | |||||
* | [Tcl Patch #2883533] tcl.m4 support for Haiku OS | nijtmans | 2009-11-19 | 4 | -3/+92 |
| | |||||
* | Updated freeIntRepProc routines so | nijtmans | 2009-11-19 | 2 | -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 package | nijtmans | 2009-11-19 | 2 | -15/+24 |
| | |||||
* | Test-case for fixed [Bug 2849797] | nijtmans | 2009-11-19 | 5 | -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. | dgp | 2009-11-19 | 3 | -16/+11 |
| | | | | * win/tclAppInit.c: [Bug 2883850, 2900542]. | ||||
* | Undo Jan's needless vandalism. | dkf | 2009-11-19 | 6 | -19/+28 |
| | |||||
* | Add files to .cvsignore | nijtmans | 2009-11-18 | 3 | -0/+11 |
| | |||||
* | Fix [Bug 2883850]: pkgIndex.tcl doesn't | nijtmans | 2009-11-18 | 17 | -89/+190 |
| | | | | get created with static Tcl build |