| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
***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/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).
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* 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:
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* 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:
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* 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).
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
other developers
|
| | |
| | |
| | |
| | | |
useversion glob pattern. [Bug 1579941]
|
| | |
| | |
| | |
| | |
| | | |
* unix/Makefile.in: files and configure switches to override the
* unix/configure: detected default.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* doc/Ensemble.3: Contents) exposed by `make checkdoc`
* doc/FileSystem.3:
* doc/GetTime.3:
* doc/PkgRequire.3:
|
| | | |
|
| | |
| | |
| | |
| | | |
commit: interp released too early. Spotted by mistachkin.
|
| | |
| | |
| | |
| | |
| | | |
* tests/apply.test (9.1-9.2): plugged intrep leak [Bug 1578454],
found by mjanssen.
|
| | |
| | |
| | |
| | |
| | |
| | | |
thread, where pthread_get_stacksize_np() returns incorrect info.
* macosx/GNUmakefile: don't redo prebinding of non-prebound binaires.
|
| | |
| | |
| | |
| | |
| | | |
changed Tcl_Alloc()/Tcl_Free() calls to ckalloc()/ckfree() for easier
memory debugging in the future. [Bug 1568373]
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* 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.
|
| | | |
|
| | |
| | |
| | |
| | | |
from Tcl_FSGetNormalizedPath per Bug 1548263 causing Bug 1575837.
|
| | |
| | |
| | |
| | |
| | |
| | | |
* 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
|
| | |
| | |
| | |
| | | |
from Tcl_FSGetNormalizedPath per Bug 1548263 causing Bug 1575837.
|
| | |
| | |
| | |
| | |
| | |
| | | |
* tests/interp.test (interp-14.5-10): made [interp alias] use the
ensemble rewrite machinery to produce better error messages
[Bug 1576006]
|
| | | |
|
| | |
| | |
| | |
| | | |
not in my shwlapi header file (VC++6)
|
| | |
| | |
| | |
| | | |
when argument version=NULL passed in.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
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]
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
3986 validity checking if $::http::strict is true (default true
for 8.5). [Bug 1560506]
|
| | | |
|
| | |
| | |
| | |
| | | |
allowing '_' in module names.
|
| | |
| | |
| | |
| | |
| | |
| | | |
* generic/tclEncoding.c (UtfToUnicodeProc, UnicodeToUtfProc):
* tests/encoding.test (encoding-16.1): fix alignment issues in
unicode <> utf conversion procs. [Bug 1122671]
|
| | |
| | |
| | |
| | |
| | | |
* tests/append.test(4.21-22): fix for longstanding [Bug 1570718],
lappending nothing to non-list. Reported by lvirden
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
the elements of objv, [Bug #730244].
|