Version 1 of get_width

Updated 2004-01-11 18:38:28

get_width.tcl - returns the width of the xterm window at the present time

 proc get_width {} {
        global ans
        global spid
        set cols [stty columns]
        return $cols
 }