home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 164.lha / ARexx / McC_v1.3_ARexx / mccopts.txed < prev    next >
Text File  |  1988-04-28  |  814b  |  18 lines

  1. /************************************************************************/
  2. /*                                                                      */
  3. /* This macro is used to change the compiler options.                   */
  4. /*                                                                      */
  5. /* Version 1.3            Written:  6/3/88            By John McClennan */
  6. /*                                                                      */
  7. /************************************************************************/
  8.  
  9. call open request,'con:150/60/300/55/McC V1.3'
  10. prevopts = getclip('McCopts')                     /* get previous options */
  11. call writeln request, 'Previous: '||prevopts
  12. call writech request, 'Enter Options: '
  13. opts = readln(request)
  14. call close request
  15. call setclip('McCopts',opts)
  16. return
  17.  
  18.