diff options
author | ericm <ericm> | 2000-02-05 03:20:20 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-02-05 03:20:20 (GMT) |
commit | 09aefc91245d7700c0adc862b3bd105875776920 (patch) | |
tree | 71645d413988b58fe7d4461a547d16e1a7d92381 /library/struct1.0/pkgIndex.tcl | |
parent | 8bf5f65362060f021f96b45b48a62d9183deabb1 (diff) | |
download | tcl-09aefc91245d7700c0adc862b3bd105875776920.zip tcl-09aefc91245d7700c0adc862b3bd105875776920.tar.gz tcl-09aefc91245d7700c0adc862b3bd105875776920.tar.bz2 |
* doc/tree.n:
* doc/stack.n:
* doc/queue.n: docs for tree, stack, and queue.
* win/Makefile.in:
* unix/Makefile.in: Added struct1.0 to list of libraries to install.
* tests/stackstruct.test: stack tests
* tests/queue.test: queue tests
* library/struct1.0/queue.tcl: queue data structure.
* library/struct1.0/stack.tcl: stack data structure.
* library/struct1.0/pkgIndex.tcl:
* library/struct1.0/struct.tcl: data structure package
Diffstat (limited to 'library/struct1.0/pkgIndex.tcl')
-rw-r--r-- | library/struct1.0/pkgIndex.tcl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/library/struct1.0/pkgIndex.tcl b/library/struct1.0/pkgIndex.tcl new file mode 100644 index 0000000..c1c4b4e --- /dev/null +++ b/library/struct1.0/pkgIndex.tcl @@ -0,0 +1,11 @@ +# Tcl package index file, version 1.1 +# This file is generated by the "pkg_mkIndex" command +# and sourced either when an application starts up or +# by a "package unknown" script. It invokes the +# "package ifneeded" command to set up package-related +# information so that packages will be loaded automatically +# in response to "package require" commands. When this +# script is sourced, the variable $dir must contain the +# full path name of this file's directory. + +package ifneeded struct 1.0 [list source [file join $dir struct.tcl]] |