Changeset 697
- Timestamp:
- Dec 4, 2009 5:10:30 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dumpprof.tcl
- Property rcs:date changed from 2003/05/13 16:21:28 to 2003/05/22 21:41:18
- Property rcs:rev changed from 1.1 to 1.2
- Property rcs:lines set to +11 -5
r689 r697 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 } 52 57 SetTkDefaultOptions $expgui(font) … … 75 80 lappend list2 $expmap(htype_$hist) 76 81 foreach i $expmap(phaselist_$hist) { 77 set list [string trim [hapinfo $hist $i proftype]] 82 set list $i 83 lappend list [string trim [hapinfo $hist $i proftype]] 78 84 lappend list [hapinfo $hist $i pcut] 79 85 set nterms [hapinfo $hist $i profterms]
Note: See TracChangeset
for help on using the changeset viewer.