On Tue, 8 Apr 1997, Tony Grimm wrote:

> "output not defined in return $output"
> (edited from the complete trace)
> 
> Seems that the local variable output is not
> initialized in dump_top() of dump.tcl
> 
> proc vTcl:dump_top {target} {
>     global vTcl
>     set proc_base $vTcl(winname)$target
> 
> should be
> 
> proc vTcl:dump_top {target} {
>     global vTcl
>     set output ""
>     set proc_base $vTcl(winname)$target
> 
> The above resolves the save error.


 Thanks, Tony. I stuck this in for 1.010.

 -stewart-

Reply via email to