check_special

one of the documented procedures in this installation of the ACS
Usage:
check_special   col_name   special_cols
What it does:
Checks to see if the column was listed as special, like a column id or pretty name, for example
Defined in: /web/philip/tcl/prototype-defs.tcl

Source code:


    set special_index [lsearch $special_cols $col_name] 
    if {$special_index == -1} {
        return 0
    } else {
        return [expr $special_index + 1]}


philg@mit.edu