home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / mac / exsource.old / 29_1.tcl < prev    next >
Text File  |  2003-04-15  |  197b  |  13 lines

  1. #
  2. # Example 29-1
  3. # Reading an option database file.
  4. #
  5.  
  6. if [file exists $appdefaults] {
  7.     if [catch {option readfile $appdefaults startup} err] {
  8.         puts stderr " error in $appdefaults: $err" 
  9.     }
  10. }
  11.  
  12.  
  13.