im_format_number

one of the documented procedures in this installation of the ACS
Usage:
im_format_number   num   { tag "<font size="+1" color="blue">" }
What it does:
Pads the specified number with the specified tag
Defined in: /web/philip/tcl/intranet-defs.tcl

Source code:


    regsub {\.$} $num "" num
    return "$tag${num}.</font>"


philg@mit.edu