summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * generic/tclBasic.c: Fix for bad cmd resolution by coroutinesMiguel Sofer2009-12-193-2/+19
| | | | | * tests/coroutine.test: [Bug #2917627]. Thanks to schelte for finding it.
* bump to msgcat 1.4.3 to account for commitsdgp2009-12-174-9/+9
|
* Fix gcc warning: ignoring return value of ‘write’,nijtmans2009-12-171-3/+3
| | | | declared with attribute warn_unused_result
* Upgrade to Safe Base's handling of [glob] to be more permissive with thedkf2009-12-163-34/+126
| | | | | feature set supported, but stricter with path management. It also now has an error pattern more like the standard [glob] command.
* Fix gcc warning: ignoring return value of ‘write’,nijtmans2009-12-1610-28/+67
| | | | | | declared with attribute warn_unused_result CONSTify functions TclpGetUserHome and TclSetPreInitScript (TIP #27)
* [Bug 1911342]: Rewrite formatting to avoid bogus link from tm.n to list.n indkf2009-12-162-11/+18
| | | | the HTML documentation.
* Force this file to be interpreted as a Tcl script by Emacsdkf2009-12-161-0/+4
|
* [Bug 2913616]: Make msgcat package work in safe interpreters.dkf2009-12-162-10/+18
|
* Document that [file tempfile] always works on the native filesystem by design.dkf2009-12-142-6/+17
| | | | [Bug 2388866]
* fix commentMiguel Sofer2009-12-131-7/+5
|
* remove accidentally committed c++ style temp commentsMiguel Sofer2009-12-131-3/+1
|
* * generic/tclBasic.c: Release TclPopCallFrame() from itsMiguel Sofer2009-12-134-18/+22
| | | | | * generic/tclExecute.c: tailcall-management duties * generic/tclNamesp.c:
* * generic/tclBasic.c: Moving TclBCArgumentRelease callMiguel Sofer2009-12-133-12/+11
| | | | | * generic/tclExecute.c: from TclNRTailcallObjCmd to TEBC, so that the pairing of the Enter and Release calls is clearer.
* Plug testing memleak. [Bug 2895367]dkf2009-12-122-84/+111
|
* Fix gcc warning: signed and unsigned type in conditional expressionnijtmans2009-12-112-2/+4
|
* Add tcl.pc and tclsh.exe to .cvsignorenijtmans2009-12-111-0/+2
|
* Fix gcc warning, using gcc-4.3.4 on cygwinnijtmans2009-12-114-9/+9
| | | | | warning: array subscript has type 'char' win/makefile.vc Revert to version 1.203 [Bug #2912773]
* Fix gcc warning, using gcc-4.3.4 on cygwinnijtmans2009-12-116-16/+21
| | | | | warning: array subscript has type 'char' win/makefile.vc Revert to version 1.203 [Bug #2912773]
* [FRQ 2897296]: Cross-links to sections within a manpage when in HTML.dkf2009-12-112-46/+55
|
* Change to braces in example to avoid bug in HTML creator scriptdkf2009-12-111-3/+3
|
* fix commentMiguel Sofer2009-12-111-4/+3
|
* code commentsMiguel Sofer2009-12-111-20/+14
|
* code commentsMiguel Sofer2009-12-111-12/+13
|
* code commentsMiguel Sofer2009-12-112-13/+16
|
* simplify the coroutine BP-chain monkey-patching; tclBasic does not need toMiguel Sofer2009-12-113-36/+20
| | | | know about bottomPtr, tebc does not need to behave differently on exit for coros
* * generic/tclBasic.c: Full nre-enabling of coroutinesMiguel Sofer2009-12-103-16/+10
| | | | * generic/tclExecute.c: [Bug 2806407]
* * generic/tclBasic.c: small cleanupMiguel Sofer2009-12-102-24/+25
|
* * generic/tclExecute.c: fix panic in http11.test caused by buggyMiguel Sofer2009-12-102-2/+7
| | | | earlier commits in coroutine management.
* * generic/tclObj.c (TclContinuationsEnter): [Bug 2895323]: Updatedandreas_kupries2009-12-102-5/+28
| | | | | | | | comments to describe when the function can be entered for the same Tcl_Obj* multiple times. This is a continuation of the 2009-11-10 entry where a memory leak was plugged, but where not sure if that was just a band-aid to paper over some other error. It isn't, this is a legal situation.
* reorganization and better comments in TclNRCoroutineObjCmd()Miguel Sofer2009-12-101-49/+46
|
* * generic/tclBasic.c: Reducing the # of moving parts forMiguel Sofer2009-12-103-26/+7
| | | | | * generic/tclExecute.c: coroutines by delegating more to tebc; eliminate the special coroutine CallFrame.
* * generic/tclBasic.c: Reducing the # of moving parts forMiguel Sofer2009-12-103-31/+16
| | | | * generic/tclExecute.c: coroutines
* Minor whitespace cleanup... nothing to see heredkf2009-12-101-4/+4
|
* Killed c99/c++ comments left in by the IO patch.andreas_kupries2009-12-091-6/+1
|
* * generic/tclIO.c: [Bug 2901998]: Applied Alexandre Ferrieux'sandreas_kupries2009-12-092-5/+55
| | | | | | patch fixing the inconsistent buffered I/O. Tcl's I/O now flushes buffered output before reading, discards buffered input before writing, etc.
* Revert the 1.19 -> 1.20 commit now that bug 2487771 appears fixed.dgp2009-12-091-2/+2
|
* remove accidentally committed C++ style commentsMiguel Sofer2009-12-091-3/+1
|
* * generic/tclBasic.c: Insure correct lifetime of varFrame'sMiguel Sofer2009-12-093-19/+37
| | | | | | (objc,objv)for coroutines. * generic/tclExecute.c: Code regrouping
* Add missing Tcl_SetErrorCode calls.dkf2009-12-092-24/+40
|
* * generic/tclExecute.c (TclStackFree): Improved panic msgMiguel Sofer2009-12-092-2/+7
|
* added comment confessing my puzzlementMiguel Sofer2009-12-081-1/+8
|
* minor cleanupMiguel Sofer2009-12-081-10/+7
|
* baby steps towards nre-enabling coroutine first runMiguel Sofer2009-12-082-32/+22
|
* * generic/tclBasic.c: Partial nre-enabling of coroutines.Miguel Sofer2009-12-084-66/+104
| | | | | | * generic/tclExecute.c: The initial call still requires its * generic/tclInt.h: own instance of tebc, but on resume coros can execute in the caller's tebc.
* * generic/tclExecute.c (TEBC): silence warning about pcAdjustmentMiguel Sofer2009-12-082-1/+7
|
* Small corrections (enforcing ANSI style declarations, etc.)dkf2009-12-081-133/+145
|
* Reduce size of TEBC activation record a bit.dkf2009-12-082-379/+409
|
* * generic/tclExecute.c (TEBC): Grouping "slow" variables intoMiguel Sofer2009-12-082-319/+333
| | | | | structs, to reduce register pressure and help the compiler with variable allocation.
* * generic/tclExecute.c: Start cleaning the TEBC stablesMiguel Sofer2009-12-083-219/+165
| | | | * generic/tclInt.h:
* * generic/tclCmdIL.c: Fix of [Bug #2910094] by akuMiguel Sofer2009-12-073-3/+24
| | | | * tests/coroutine.test: