Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improve compatibility detection for <time.h> and <sys/stat.h>: | jan.nijtmans | 2013-06-11 | 1 | -3/+4 |
|\ | | | | | | | - Move <time.h> before other includes on Windows, so we are sure the time_t definition being checked doesn't come from <sys/types.h>. - Padding at the end of Tcl_StatBuf doesn't influcence binary compatibility, so relax panic check accordingly. | ||||
| * | Improve compatibility detection for <time.h> and <sys/stat.h>: | jan.nijtmans | 2013-06-11 | 1 | -3/+4 |
| | | | | | | | | - Move <time.h> before other includes on Windows, so we are sure the time_t definition being checked doesn't come from <sys/types.h>. - Padding at the end of Tcl_StatBuf doesn't influcence binary compatibility, so relax panic check accordingly. | ||||
* | | Add support for the latest mingw-4.0-rc1. See: ↵ | jan.nijtmans | 2013-05-16 | 1 | -0/+11 |
|\ \ | |/ | | | | | [http://sourceforge.net/p/mingw/mingw-org-wsl/ci/4.0-rc1/tree/NEWS] | ||||
| * | _USE_32BIT_TIME_T is already defined in tclWinPort.h | jan.nijtmans | 2013-05-16 | 1 | -4/+0 |
| | | |||||
| * | Add support for the latest mingw-4.0-rc1. See: ↵ | jan.nijtmans | 2013-05-16 | 1 | -0/+15 |
| |\ | | | | | | | | | | [http://sourceforge.net/p/mingw/mingw-org-wsl/ci/4.0-rc1/tree/NEWS] | ||||
| | * | Add support for the latest mingw-4.0-rc1. See: ↵ | jan.nijtmans | 2013-05-16 | 1 | -0/+15 |
| | | | | | | | | | | | | [http://sourceforge.net/p/mingw/mingw-org-wsl/ci/4.0-rc1/tree/NEWS] | ||||
| | * | Make (deprecated) Tcl_EvalObj/Tcl_GlobalEvalObj macro's always, not only ↵ | jan.nijtmans | 2013-04-09 | 1 | -0/+2 |
| | | | | | | | | | | | | when using stubs. | ||||
* | | | A better technique for [list {*}blah]. Remove the INST_LIST_EXPANDED opcode ↵ | dkf | 2013-05-15 | 1 | -74/+82 |
| | | | | | | | | | | | | (and the complex machinery associated with it) as as it is no longer needed. | ||||
* | | | Implement Tcl_NewBooleanObj, Tcl_DbNewBooleanObj and Tcl_SetBooleanObj as ↵ | jan.nijtmans | 2013-04-23 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | | | | | | | macros using Tcl_NewIntObj, Tcl_DbNewLongObj and Tcl_SetIntObj. Starting with Tcl 8.5, this is exactly the same, it only eliminates code duplication. Eliminate use of NO_WIDE_TYPE everywhere: It's exactly the same as TCL_WIDE_INT_IS_LONG | ||||
| * | | 3610404 When we let go of commandPtr in TclEvalObjvInternal, NULL out the | dgp | 2013-04-16 | 1 | -0/+1 |
| | | | | | | | | | variable so we don't mistakenly try to use the value later after we freed it. | ||||
* | | | Make Tcl_EvalObj/Tcl_GlobalEvalObj a macro always, not only when using stubs. | jan.nijtmans | 2013-04-04 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | Make Tcl_EvalObj/Tcl_GlobalEvalObj a macro always, not only when using stubs. | jan.nijtmans | 2013-04-04 | 1 | -0/+2 |
| | | | |||||
* | | | If TCL_NO_DEPRECATED is defined, don't depend on ↵ | jan.nijtmans | 2013-03-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Tcl_CreateMathFunc()/Tcl_SaveResult() in testcases any more. Prevent endless loop in Tcl_AddObjErrorInfo, when TCL_NO_DEPRECATED is defined. | ||||
* | | | Allow Tcl to be compiled even if Tcl_Eval, Tcl_GetVar, ... are macros. | jan.nijtmans | 2013-02-28 | 1 | -0/+4 |
| | | | |||||
* | | | remove unused code | mig | 2013-01-25 | 1 | -3/+0 |
| | | | |||||
* | | | Allow win32 build with -DTCL_NO_DEPRECATED, just as the UNIX build, off by ↵ | jan.nijtmans | 2013-01-16 | 1 | -2/+0 |
|\ \ \ | |/ / | | | | | | | | | | default. Define Tcl_EvalObj and Tcl_GlobalEvalObj as macros, even when TCL_NO_DEPRECATED is defined, so Tk can benefit from it too. | ||||
| * | | Allow win32 build with -DTCL_NO_DEPRECATED, just as the UNIX build, off by ↵ | jan.nijtmans | 2013-01-16 | 1 | -2/+0 |
| |\ \ | | |/ | | | | | | | | | | default. Define Tcl_EvalObj and Tcl_GlobalEvalObj as macros, even when TCL_NO_DEPRECATED is defined, so Tk can benefit from it too (this is not what TCL_NO_DEPRECATED is supposed to do). | ||||
| | * | Allow win32 build with -DTCL_NO_DEPRECATED, just as the UNIX build, off by ↵ | jan.nijtmans | 2013-01-16 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | default. Define Tcl_EvalObj and Tcl_GlobalEvalObj as macros, even when TCL_NO_DEPRECATED is defined, so Tk can benefit from it too (this is not what TCL_NO_DEPRECATED is supposed to do). | ||||
| | * | More complete purge of things only present for supporting long-dead Mac 9 ↵ | dgp | 2012-11-15 | 1 | -14/+0 |
| | | | | | | | | | | | | systems. | ||||
| | * | make some more internal tables CONST | jan.nijtmans | 2012-04-18 | 1 | -4/+4 |
| | | | | | | | | | fix compilation with -DNO_CONST | ||||
* | | | Name functions according to 'what' instead of 'how' in the [tailcall] | mig | 2013-01-11 | 1 | -17/+24 |
| | | | | | | | | | machinery, in view of making public some parts of it. | ||||
* | | | tailcall now running in a simpler model, with no eval-flags and no nre-stack ↵ | mig | 2013-01-10 | 1 | -74/+68 |
| | | | | | | | | | | | | rewriting; yieldto also requires one fewer bounce. Mostly from mig-nre-mods | ||||
* | | | 3587651 Fix [info functions] and Tcl_ListMathFuncs(). | dgp | 2012-11-16 | 1 | -31/+18 |
|\ \ \ | |/ / | |||||
| * | | 3587651 Fix Tcl_ListMathFuncs() by turning it into a call to [info functions] | dgp | 2012-11-16 | 1 | -31/+18 |
| | | | |||||
* | | | re-enable bcc-tailcall, after fixing an infinite loop in the ↵ | mig | 2012-11-10 | 1 | -1/+1 |
| | | | | | | | | | | | | TCL_COMPILE_DEBUG mode | ||||
* | | | Disable bytecompile of [tailcall] until it gets some repair. As is, it | dgp | 2012-11-05 | 1 | -1/+1 |
| | | | | | | | | | hopelessly bogs down debug-enabled testing, and make many tests fail. | ||||
* | | | Added compilation of [tailcall]. Not a particularly efficient compilation ↵ | dkf | 2012-11-01 | 1 | -6/+5 |
| | | | | | | | | | | | | though; it does not detect tailcall-of-self as a special case. | ||||
* | | | Added compilation of [regsub] (in the simplest, most restricted case). | dkf | 2012-10-30 | 1 | -1/+1 |
| | | | |||||
* | | | Compiler for some of the simpler cases of [format]. | dkf | 2012-10-29 | 1 | -1/+1 |
| | | | |||||
* | | | Working towards a BCCed [yield]; this doesn't work right now. | dkf | 2012-10-26 | 1 | -8/+7 |
| | | | |||||
* | | | * generic/tclBasic.c (TclNRCoroutineObjCmd): insure that numlevels | mig | 2012-10-18 | 1 | -3/+3 |
| | | | | | | | | | are properly set, fix bug discovered by dkf and reported at http://code.activestate.com/lists/tcl-core/12213/ | ||||
* | | | merge trunk | dkf | 2012-09-04 | 1 | -62/+67 |
|\ \ \ | |||||
| * | | | converting to using Tcl_Obj API for error message generation; part done | dkf | 2012-08-03 | 1 | -62/+67 |
| | | | | |||||
* | | | | Rename 'mapeach' to 'lmap' per preferred alternative in TIP #405. | twylite | 2012-08-08 | 1 | -1/+1 |
| | | | | |||||
* | | | | Back-out 'foreacha' implementation but leave code cleanup of 'mapeach' and ↵ | twylite | 2012-08-08 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | 'dict map'. | ||||
* | | | | [Patch-3163961] Implementation of TIP #405 merged from private branch. ↵ | twylite | 2012-08-03 | 1 | -1/+3 |
|/ / / | | | | | | | | | | Includes 'mapeach', 'dict map' and 'foreacha' commands, test suite (partial for 'foreacha') and man pages (except for 'foreacha'). | ||||
* | | | Factor out a number of common patterns of use of Tcl_DStringAppend. | dkf | 2012-07-03 | 1 | -3/+3 |
| | | | |||||
* | | | NRInterpCoroutine -> TclNRInterpCoroutine | jan.nijtmans | 2012-07-02 | 1 | -5/+7 |
| | | | | | | | | | | | | make NRCommand static make TalInstructionTable static const | ||||
* | | | 3532959 Make sure the lifetime management of entries in the linePBodyPtr hash | dgp | 2012-06-11 | 1 | -4/+8 |
|\ \ \ | |/ / | | | | table can tolerate either order of teardown, interp first, or Proc first. | ||||
| * | | 3532959 Arrange for every lambda to place an entry in the linePBodyPtr hash ↵ | dgp | 2012-06-10 | 1 | -4/+6 |
| | | | | | | | | | | | | | | | | | | | | | table. Then the two teardowns of data in that table synchronize so that the first to run signals the other not to operate. Test proc-7.4 in a mem debug build of Tcl will detect Bug 3532959 by crashing. | ||||
| * | | Work in progress fixing 3532959 | dgp | 2012-06-08 | 1 | -1/+2 |
| | | | |||||
* | | | Remove unused variable NULL_CONTEXT. | dgp | 2012-06-05 | 1 | -2/+0 |
| | | | |||||
* | | | Restore the tcl_platform(threaded) variable. | dgp | 2012-04-17 | 1 | -0/+11 |
| | | | |||||
* | | | minor comment formatting | dkf | 2012-04-15 | 1 | -39/+70 |
| | | | |||||
* | | | [Bug 3448512]: clock scan "1958-01-01" fails only in debug compilation | jan.nijtmans | 2012-04-11 | 1 | -11/+0 |
|\ \ \ | |/ / | |||||
| * | | [Bug 3388350] mingw64 compiler warnings | jan.nijtmans | 2011-08-16 | 1 | -1/+1 |
| |\ \ | | |/ | |||||
| | * | 3390272 Leak of [info script] value. | dgp | 2011-08-15 | 1 | -0/+4 |
| | | | |||||
* | | | Implementation of TIP #396 | dkf | 2012-04-02 | 1 | -7/+4 |
| | | | |||||
* | | | * generic/tclCompCmds.c (TclCompileLreplaceCmd): Added a compilation | dkf | 2012-02-15 | 1 | -1/+1 |
| | | | | | | | | | | | | strategy for [lreplace] that tackles the cases which are equivalent to a static [lrange]. | ||||
* | | | * generic/tclCompCmds.c (TclCompileLrangeCmd): Add compiler for | dkf | 2012-02-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | [lrange] with constant indices so we can take advantage of existing TCL_LIST_RANGE_IMM opcode. (TclCompileLindexCmd): Improve coverage of constant-index-style compliation using technique developed for [lrange] above. |