version 1.1, 1999/09/28 21:25:37
|
version 1.2, 1999/12/07 19:10:47
|
Line 172 proc optionlist { match } {
|
Line 172 proc optionlist { match } {
|
} |
} |
set confID [open "class.conf"] |
set confID [open "class.conf"] |
set aline [gets $confID] |
set aline [gets $confID] |
while {![eof $confID]} { |
while {!([eof $confID] && ($aline == ""))} { |
set type [lindex $aline 3] |
set type [lindex $aline 3] |
if { [lsearch $type $match] != -1 } { |
if { [lsearch $type $match] != -1 } { |
set classname [lindex $aline 0] |
set classname [lindex $aline 0] |