| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* generic/tcl.h:
* library/init.tcl:
* library/reg1.0/pkgIndex.tcl:
* library/tcltest1.0/tcltest.tcl:
* mac/README:
* tools/tcl.hpj.in:
* tools/tcl.wse.in:
* unix/README:
* unix/configure.in:
* unix/tcl.spec:
* win/README:
* win/README.binary:
* win/configure.in:
* win/makefile.vc:
* win/tcl.m4: updated patchlevel to 8.4a1
|
|
|
|
| |
auto_load errors not setting error message and errorInfo properly.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* library/tclIndex:
* library/package.tcl: Added ::package namespace and
::package::create function.
* library/init.tcl: Fixed problem with auto_load and determining
if commands were loaded.
* library/auto.tcl: "Fixed" issues with $ in files to be auto indexed.
* doc/Package.n: New man page for package::create function.
* doc/pkgMkIndex.n: Added additional information.
* doc/library.n: Added additional qualification regarding auto_mkindex.
|
|
|
|
|
|
|
|
|
| |
* tests/autoMkindex.test: Test for auto loader fix (bug #2480).
* library/init.tcl: auto_load was using [info commands $name] to
determine if a given command was available; if the command name
had * or [] it, this would fail because info commands uses
glob-style matching. This is fixed. (Bug #2480).
|
|
|
|
| |
recognized built-in commands for COMSPEC on NT. [Bug: 2858]
|
|
|
|
| |
the auto_path variable
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* library/auto.tcl:
* library/init.tcl:
* library/ldAout.tcl:
* library/package.tcl:
* library/safe.tcl:
* library/word.tcl:
* library/http2.1/http.tcl:
* library/msgcat1.0/msgcat.tcl: updated libraries to better
Tcl style guide (no more string comparisons with == or !=, spacing
changes).
|
|
|
|
|
| |
* library/init.tcl: fixed path handling in auto_execok (it could
miss including the normal path on some Windows machines) [Bug: 1276]
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Did some general cleanup to handle bad eval statements that didn't
use "list".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- If the variable $tcl_library contains the empty string, this
empty string will be put in $auto_path. This is not useful at all,
it only slows down later package processing.
- If the variable tcl_pkgPath is not set, the "unset __dir"
fails. Thich makes init.tcl totally unusable. Better put a "catch"
around it.
- In the function tcl_findLibraries, the "string match" function
only works correctly if $tcl_patchLevel is in one of the forms
"?.?a?", "?.?b?" or "?.?.?". Could a "regexp" be used instead,
then it allows anything to be appended to the patchLevel
string. And it is more efficient.
- The tclPkgSetup function assumes that if $type != "load" then
the type must be "source". This needn't be true. Some users want
to add their own setup types.
[RFE: 1138] [Bug: 978]
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
path (e.g. in the test suite)
|
| |
|
| |
|
|
|
|
|
| |
the parent directory of tcl_library is on the auto_path. Added
a comment to init.tcl about how auto_path is initialized.
|
|
|
|
|
|
|
|
| |
- on windows, use case-insensitive comparison with the shared lib extension,
so that both .DLL and .dll files are loaded (.DLL were sourced)
- if the glob fails, make sure we go back to the old directory
- make sure we can handle packages that spread over multiple files
- set auto_path in the slave consistently with ours
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
parent workspace "/export/home/ws/tcl8.0".
|
| |
|
| |
|
|
|
|
| |
parent workspace "/home/welch/ws/tcl8.0.3".
|
| |
|
|
|
|
|
|
| |
- make sure that namespaces are not imported more than once per interpreter
- make sure we import the namespaces before setting the initial list of
commands, or we miss the imported commands.
|
| |
|
| |
|
|
|
|
| |
parent workspace "/ws/tcl8.0".
|
| |
|
|
|