diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-01-18 20:20:49 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-01-18 20:20:49 (GMT) |
commit | 27ae53c00f75a1a2fc1b80db483c13da0d121286 (patch) | |
tree | 3e143cc56a396e4adf97805e1c3f77e3fbd86092 | |
parent | 019b08e0548ed35729d38d2d8509bfa5919c2345 (diff) | |
download | blt-27ae53c00f75a1a2fc1b80db483c13da0d121286.zip blt-27ae53c00f75a1a2fc1b80db483c13da0d121286.tar.gz blt-27ae53c00f75a1a2fc1b80db483c13da0d121286.tar.bz2 |
clean up ds9.tcl
-rw-r--r-- | ds9/library/ds9.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ds9/library/ds9.tcl b/ds9/library/ds9.tcl index 8fc9090..1d26677 100644 --- a/ds9/library/ds9.tcl +++ b/ds9/library/ds9.tcl @@ -200,11 +200,10 @@ switch $ds9(wm) { switch $ds9(wm) { x11 { set ds9(root) "[::tcl::zipfs::root]mntpt" - set auto_path $ds9(root) + set auto_path [list $ds9(root) $ds9(root)/tcl8.6 $ds9(root)/tk8.6 $ds9(root)/tk8.6/ttk] package require msgcat package require http - source $ds9(root)/library/htp.tcl package require base64 package require log @@ -218,6 +217,7 @@ switch $ds9(wm) { package require xmlrpc package require DS9 + source $ds9(root)/library/htp.tcl source $ds9(root)/library/xmfbox.tcl source $ds9(root)/library/tkfbox.tcl @@ -233,7 +233,6 @@ switch $ds9(wm) { package require msgcat package require http - source $ds9(root)/library/htp.tcl package require base64 package require log @@ -247,6 +246,7 @@ switch $ds9(wm) { package require xmlrpc package require DS9 + source $ds9(root)/library/htp.tcl source $ds9(root)/library/xmfbox.tcl source $ds9(root)/library/tkfbox.tcl @@ -295,7 +295,6 @@ switch $ds9(wm) { package require msgcat package require http - source $ds9(root)/library/htp.tcl package require base64 package require log @@ -309,6 +308,7 @@ switch $ds9(wm) { package require xmlrpc package require DS9 + source $ds9(root)/library/htp.tcl source $ds9(root)/library/xmfbox.tcl source $ds9(root)/library/tkfbox.tcl } |