• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..08-Nov-2021-

.gitignoreH A D08-Nov-202144 43

MakefileH A D08-Nov-2021902 2919

READMEH A D08-Nov-2021718 1914

pltcl_delmod.inH A D08-Nov-20212.2 KiB11883

pltcl_listmod.inH A D08-Nov-20212.3 KiB12490

pltcl_loadmod.inH A D08-Nov-202111.2 KiB502401

unknown.pltclH A D08-Nov-20212.3 KiB6456

README

1src/pl/tcl/modules/README
2
3Regular Tcl scripts of any size (over 8K :-) can be loaded into
4the table pltcl_modules using the pltcl_loadmod script. The script
5checks the modules that the procedure names don't overwrite
6existing ones before doing anything. They also check for global
7variables created at load time.
8
9All procedures defined in the module files are automatically
10added to the table pltcl_modfuncs. This table is used by the
11unknown procedure to determine if an unknown command can be
12loaded by sourcing a module. In that case the unknown procedure
13will silently source in the module and reexecute the original
14command that invoked unknown.
15
16I know, this readme should be more explanatory - but time.
17
18Jan
19