- Timestamp:
- Dec 4, 2009 5:10:36 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dumpexp.tcl
- Property rcs:date changed from 2003/04/10 22:19:24 to 2003/05/22 21:46:50
- Property rcs:lines changed from +10 -7 to +10 -4
- Property rcs:rev changed from 1.3 to 1.4
r675 r703 44 44 #source [file join $expgui(scriptdir) gsascmds.tcl] 45 45 # override options with locally defined values 46 if [file exists [file join $expgui(scriptdir) localconfig]] { 47 source [file join $expgui(scriptdir) localconfig] 46 set filelist [file join $expgui(scriptdir) localconfig] 47 if {$tcl_platform(platform) == "windows"} { 48 lappend filelist "c:/gsas.config" 49 } else { 50 lappend filelist [file join ~ .gsas_config] 48 51 } 49 if [file exists [file join ~ .gsas_config]] { 50 source [file join ~ .gsas_config] 52 catch { 53 foreach file $filelist { 54 if [file exists $file] {source $file} 55 } 51 56 } 57 52 58 SetTkDefaultOptions $expgui(font) 53 59
Note: See TracChangeset
for help on using the changeset viewer.