summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix [Bug 1587618], eliminating the callObjc and callObjv fields from the Interpdkf2006-10-318-109/+85
| | | | structure.
* * tools/tcltk-man2html.tcl (option-toc): handle any kind ofhobbs2006-10-312-1/+6
| | | | options defined toc section (needed for ttk docs)
* boo - last commit did not compile :(Miguel Sofer2006-10-311-2/+2
|
* * generic/tclBasic.c (TEOVI): insured that the interp's callObjc/vMiguel Sofer2006-10-312-4/+20
| | | | | fields are restored after traces run, as they be spoiled. This was causing a segfault in tcllib's profiler tests.
* * generic/tclExecute.c (INST_MOD): Corrected improper testing ofdgp2006-10-303-4/+23
| | | | | * tests/expr.test: the sign of bignums when applying Tcl's division rules. Thanks to Peter Spjuth. [Bug 1585704]
* D'oh! Updated the wrong thing.dkf2006-10-301-13/+15
|
* Add missing initialization.dkf2006-10-301-1/+2
|
* Formatting policedkf2006-10-301-232/+227
|
* * generic/tclNamesp.c (EnsembleImplementationCmd):Miguel Sofer2006-10-293-3/+27
| | | | | * tests/namespace.test (47.7-8): reverted a wrong "optimisation" that completely broke snit; added two tests.
* Minor style consistency cleanupdkf2006-10-281-39/+39
|
* Added some explanatory comments.dkf2006-10-281-10/+14
|
* Added note about test updatedkf2006-10-281-0/+2
|
* Regendkf2006-10-282-2/+17
|
* Insert of calling point in middle of procedure code. Also cleaned up howdkf2006-10-285-156/+260
| | | | [apply] terms generate stack trace info.
* Improved Changelog entry for commit dated 2006-10-23Miguel Sofer2006-10-281-6/+7
|
* Make a comment look nicer. :-)dkf2006-10-281-3/+3
|
* Added missing type to declarationdkf2006-10-271-2/+2
|
* Cleaning up of various bits in tclVar.c to make code clearer to understand.dkf2006-10-272-39/+45
|
* Regendkf2006-10-272-2/+14
|
* Allow extensions that use the internal stubs to set a namespace path.dkf2006-10-273-9/+13
|
* Add field to CallFrame for holding object call frame data.dkf2006-10-273-4/+18
|
* Regendkf2006-10-271-3/+3
|
* Fixed a spot where CONSTness had been forgotten.dkf2006-10-273-7/+13
|
* * generic/tclProc.c (SetLambdaFromAny): minor change, eliminateMiguel Sofer2006-10-272-3/+6
| | | | redundant call to Tcl_GetString (thanks aku).
* doh, missing ChangeLog entryMiguel Sofer2006-10-261-0/+6
|
* * generic/tclInterp.c (ApplyObjCmd):aMiguel Sofer2006-10-262-6/+7
| | | | | * generic/tclNamesp.c (EnsembleImplementationCmd): replaced ckalloc (heap) with TclStackAlloc (execution stack).
* * tests/info.test (info-9.11-12): tests for [Bug 1577492]Miguel Sofer2006-10-243-3/+59
| | | | * tests/apply.test (apply-4.3-5): tests for [Bug 1574835]
* * generic/tclProc.c (ObjInterpProcEx): disable itcl hacks forMiguel Sofer2006-10-242-8/+14
| | | | | calls from ApplyObjCmd (islambda==1), as they mess apply's error messages [Bug 1583266]
* * generic/tclProc.c (ApplyObjCmd): fix wrong#args for apply byMiguel Sofer2006-10-243-16/+44
| | | | | | using the ensemble rewrite engine, [Bug 1574835]. * generic/tclInterp.c (AliasObjCmd): previous commit missed usage of TCL_EVAL_NOREWRITE for aliases.
* * generic/tclBasic.c (TclEvalObjvInternal): removed redundantMiguel Sofer2006-10-232-3/+5
| | | | check for ensembles [Bug 1577628].
* * library/clock.tcl (format, scan): corrected wrong # argsMiguel Sofer2006-10-239-28/+72
| | | | | | | | | | | | | | | | | * tests/clock.test (3.1, 34.1): messages to make use of the new rewrite capabilities of [info level] * generic/tcl.h: Lets TEOV update the iPtr->objc/objv * generic/tclBasic.c: fields, except when the (new) flag bit * generic/tclInt.h: TCL_EVAL_NOREWRITE is present. This * generic/tclNamesp.c: causes [info level] to know and use * generic/tclProc.c: ensemble rewrites [Bug 1577492] * tests/namespace.test: ***POTENTIAL INCOMPATIBILITY*** The return value from [info level 0] on interp alias calls is changed: previously returned the target command (including curried values), now returns the source - what was actually called.
* added warning to ChangeLog:Miguel Sofer2006-10-231-0/+5
| | | | | | | ***POTENTIAL INCOMPATIBILITY*** Any user that includes tclInt.h and needs to determine if it is running at level 0 should change (iPtr->varFramePtr==NULL) to (iPtr->varFramePtr==iPtr->rootFramePtr).
* * generic/tcl.h: Modified the Tcl call stack soMiguel Sofer2006-10-2310-130/+152
| | | | | | | | | | | | | * generic/tclBasic.c: there is always a valid CallFrame, even * generic/tclCmdIL.c: at level 0 [Patch 1577278]. Most of the * generic/tclInt.h: changes involve removing tests for * generic/tclNamesp.c: iPtr->(var)framePtr==NULL. There is now a * generic/tclObj.c: CallFrame pushed at interp creation * generic/tclProc.c: with a pointer to it stored in * generic/tclTrace.c: iPtr->rootFramePtr. A second unused * generic/tclVar.c: field in Interp is hijacked to enable further functionality, currently unused (but with several FRQs depending on it).
* * README: Bump version number to 8.5a6dgp2006-10-233-4/+5
| | | | | | | | | | | | | * generic/tcl.h: * library init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* * README: Bump version number to 8.5a6dgp2006-10-2310-16/+29
| | | | | | | | | | | | * generic/tcl.h: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/README.binary: * win/configure.in: * unix/configure: autoconf-2.59 * win/configure:
* back to developmentdgp2006-10-231-0/+15
|
* Version of ChangeLog for 8.5a5 releasedgp2006-10-231-15/+0
|
* * generic/tcl.h:Miguel Sofer2006-10-223-72/+24
| | | | | | | | * generic/tclHash.c: Tcl_FindHashEntry() now calls Tcl_CreateHashEntry() with a newPtr set to NULL: this would have caused a segfault previously and eliminates duplicated code. A macro has been added to tcl.h (only used when TCL_PRESERVE_BINARY_COMPATABALITY is not set - ie, not by default).
* fix configurations of 'tests' targetdas2006-10-201-6/+9
|
* Undo mistaken commit to wrong branch caused by CVS fumble... :-}dkf2006-10-2020-8044/+118
|
* Consolidated TIP#257 patch applied to HEAD to allow for experimentation bydkf2006-10-2020-118/+8044
| | | | other developers
* * tools/tcltk-man2html.tcl: add support for alpha & beta versions todas2006-10-202-3/+8
| | | | useversion glob pattern. [Bug 1579941]
* * unix/configure.in: Added autodetection for OS-supplied timezonermax2006-10-194-4/+118
| | | | | * unix/Makefile.in: files and configure switches to override the * unix/configure: detected default.
* * changes: 8.5a5 release date setdgp2006-10-182-2/+4
|
* * doc/Encoding.3: Missing doc updates (mostly Table ofdgp2006-10-186-9/+15
| | | | | | | * doc/Ensemble.3: Contents) exposed by `make checkdoc` * doc/FileSystem.3: * doc/GetTime.3: * doc/PkgRequire.3:
* advance tag for 8.5a5dgp2006-10-181-2/+4
|
* * generic/tclInterp.c (ApplyObjCmd): fixed bad error in 2006-10-12Miguel Sofer2006-10-172-2/+10
| | | | commit: interp released too early. Spotted by mistachkin.
* * tclProc.c (SetLambdaFromAny):Miguel Sofer2006-10-163-3/+52
| | | | | * tests/apply.test (9.1-9.2): plugged intrep leak [Bug 1578454], found by mjanssen.
* * unix/tclUnixThrd.c (TclpThreadGetStackSize): Darwin: fix for maindas2006-10-163-11/+24
| | | | | | thread, where pthread_get_stacksize_np() returns incorrect info. * macosx/GNUmakefile: don't redo prebinding of non-prebound binaires.
* * generic/tclPkg.c (ExactRequirement): Plugged memory leak. Alsodgp2006-10-162-4/+9
| | | | | changed Tcl_Alloc()/Tcl_Free() calls to ckalloc()/ckfree() for easier memory debugging in the future. [Bug 1568373]