Go to the source code of this file.
Functions/Subroutines | |
| ret | Exclude (type m) |
| ret | Application (type a) |
| ret | Module (type m, type pkg, type doc, type exa) |
| ret Application | ( | type | a | ) |
Definition at line 13 of file modules.tcl.
References global().
00013 {global apps ; lappend apps $a ; return }

| ret Exclude | ( | type | m | ) |
Definition at line 12 of file modules.tcl.
References global().
00012 {global excluded ; lappend excluded $m ; return }

| ret Module | ( | type | m, | |
| type | pkg, | |||
| type | doc, | |||
| type | exa | |||
| ) |
Definition at line 15 of file modules.tcl.
References global().
00015 { 00016 global modules guide 00017 00018 lappend modules $m 00019 set guide($m,pkg) $pkg 00020 set guide($m,doc) $doc 00021 set guide($m,exa) $exa 00022 return 00023 }

1.6.1