On Fri, 30 May 1997, Fletcher, Bob (GEAE) wrote:
> Running vtcl on tcl7.6/tk4.2 on HPUX 10.20 I get the following.
>
> When I try to save a file, it saves part of the file and then says,
> Can't read "output" no such variable. .
That was a v1.08 bug. Here is the solution from Tony Grimm:
--- snip ---
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.
--- snip ---
...RickM...