Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
Synopsis:
package <name>
Description:
The PACKAGE command allows a script to "group" all of the assigns, aliases,
binds, ON hooks (and stubs) under a common package name. When the PACKAGE
command is used, any alias/assigns/on that are registered until the end of
the file are given the current package name. The package name can be changed
anywhere in a script, even if PACKAGE had been previously used. However,
packages only last until the end of the file, they never propagate
upwards. Scripts that are loaded by other scripts may put themselves
under a different package name than the one being used by the loading
script. By default, a script is put into the package that is currently
active in the script that loaded it (or * if no package is active)
Options:
<name> name of the package to group the current script under
See Also:
load(5); stub(5); unload(5); on(5) unload