42<2>valiant% diff /usr/local/lib/tk tk32/library
Only in /usr/local/lib/tk: demos
Only in /usr/local/lib/tk: tclIndex
Only in tk32/library: tclindex
diff /usr/local/lib/tk/tk.tcl tk32/library/tk.tcl
31c31,35
< set auto_path "$tk_library [info library]"
---
> if [info exists auto_path] {
>     set auto_path "$tk_library $auto_path"
> } else {
>     set auto_path "$tk_library [info library]"
> }
diff /usr/local/lib/tk/wish.tcl tk32/library/wish.tcl
20,21c20,22
< source [info library]/init.tcl
< source $tk_library/tk.tcl
---
> set fileName tk.tcl
> source [info library]init.tcl
> source $tk_library$fileName
43<2>valiant% 