home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / quik_fix.lzh / quik-fix-stop.rexx < prev    next >
OS/2 REXX Batch file  |  1992-12-08  |  504b  |  25 lines

  1. /*======================================================================
  2. ** quik-fix-stop.rexx
  3. **
  4. ** This script tells the quik-fix.rexx script to stop (presumably when
  5. ** it is waiting for emacs to reply).  This can be useful if emacs
  6. ** doesn't start and you want to stop the compiler.
  7. **
  8. ** USAGE: quik-fix-stop.rexx
  9. */
  10.  
  11.  
  12. /*
  13. ** Get the port
  14. */
  15. if ~ show( 'p', QuikFix ) then do
  16.     say "QuikFix is not currently running, cannot find port named QuikFix"
  17.     exit 1
  18. end
  19.  
  20.  
  21. address value QuikFix
  22. 'STOP'
  23.  
  24. exit 0
  25.