summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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]
* * generic/tclBasic.c: Moved TIP#219 cleanup to DeleteInterpProc.andreas_kupries2006-10-162-10/+14
|
* * changes: updates for 8.5a5 release.das2006-10-162-3/+13
|
* * library/tcltest/tcltest.tcl: Revise tcltest bump to 2.3a1.dgp2006-10-167-14/+25
| | | | | | | * library/tcltest/pkgIndex.tcl: This permits more features to be * unix/Makefile.in: added to tcltest before we reach version 2.3.0, * win/Makefile.in: best timed to match the release of Tcl 8.5.0. * win/makefile.vc: This also serves as a demo of TIP 268 features.
* win/tclWinFile.c: alfredd supplied patch to fix Bug 1575837coldstore2006-10-132-4/+5
|
* win/tclWinFile.c: corrected erroneous attempt to protect against NULL return ↵coldstore2006-10-131-0/+5
| | | | from Tcl_FSGetNormalizedPath per Bug 1548263 causing Bug 1575837.
* * unix/tclUnixThrd.c (TclpThreadGetStackSize): on Darwin, usedas2006-10-135-0/+121
| | | | | | * unix/tcl.m4: pthread_get_stacksize_np() API to get thread stack size. * unix/configure: autoconf-2.59 * unix/tclConfig.h.in: autoheader-2.59
* win/tclWinFile.c: corrected erroneous attempt to protect against NULL return ↵coldstore2006-10-131-5/+9
| | | | from Tcl_FSGetNormalizedPath per Bug 1548263 causing Bug 1575837.
* * generic/tclInterp.c (ApplyObjCmd):Miguel Sofer2006-10-123-6/+121
| | | | | | * tests/interp.test (interp-14.5-10): made [interp alias] use the ensemble rewrite machinery to produce better error messages [Bug 1576006]
* no messagedavygrvy2006-10-121-0/+5
|
* nmakehlp.c: Replaced all wnsprintf() calls with snprintf(). wnsprintf was ↵davygrvy2006-10-121-10/+14
| | | | not in my shwlapi header file (VC++6)
* * generic/tclPkg.c (Tcl_PackageRequireEx): Corrected crashdgp2006-10-112-8/+17
| | | | when argument version=NULL passed in.
* * changes: Updates for 8.5a5 release.dgp2006-10-112-3/+73
|
* * tests/namespace.test (namespace-51.16): Added test.dgp2006-10-102-1/+7
|
* * generic/tclNamespace.c (TclTeardownNamespace): After thedgp2006-10-102-1/+9
| | | | | | commandPathSourceList of a namespace is cleared, set the commandPathSourceList to NULL so we don't try to walk the list a second time, possibly after it is freed. [Bug 1566526]
* Silence GCC (cast is always safe; value is known to fit with wiggle room)dkf2006-10-101-2/+2
|
* Changelog edit.Miguel Sofer2006-10-091-1/+1
|
* * doc/UpVar.3: brough the docs in accordance to the code. EverMiguel Sofer2006-10-092-4/+12
| | | | | | since 8.0, Tcl_UpVar(2)? accepts TCL_NAMESPACE_ONLY as a flag value, and var-3.4 tests for proper behaviour. The docs only allowed 0 and TCL_GLOBAL_ONLY.
* * tests/*.test: updated all tests to refer explicitly to thetip_278_20061009Miguel Sofer2006-10-0934-192/+207
| | | | | | | | | | | | | | global variables ::errorInfo, ::errorCode, ::env and ::tcl_platform: many were relying on the alternative lookup in the global namespace, that feature is tested specifically in namespace and variable tests. The modified testfiles are: apply.test, basic.test, case.test, cmdIL.test, cmdMZ.test, compExpr-old.test, error.test, eval.test, event.test, expr.test, fileSystem.test, for.test, http.test, if.test, incr-old.test, incr.test, interp.test, io.test, ioCmd.test, load.test, misc.test, namespace.test, parse.test, parseOld.test, pkg.test, proc-old.test, set.test, switch.test, tcltest.test, thread.test, var.test, while-old.test, while.test.
* bug #1571954: avoid /RTCc flag with MSVC8tip_278_branch_rootpatthoyts2006-10-063-7/+7
|