home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume4 / uemacs / part4 / sys / cpm86 / spawn.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-11-30  |  466 b   |  23 lines

  1. /*
  2.  * Name:    MicroEMACS
  3.  *        CP/M-86 spawn a sub-CLI (ha-ha).
  4.  * Version:    29
  5.  * Last edit:    05-Feb-86
  6.  * By:        rex::conroy
  7.  *        decvax!decwrl!dec-rhea!dec-rex!conroy
  8.  */
  9. #include    "def.h"
  10.  
  11. /*
  12.  * Create a subjob with a copy
  13.  * of the command intrepreter in it. When the
  14.  * command interpreter exits, mark the screen as
  15.  * garbage so that you do a full repaint. Bound
  16.  * to "C-C" and called from "C-Z".
  17.  */
  18. spawncli(f, n, k)
  19. {
  20.     eprintf("Not in CP/M-86");
  21.     return (FALSE);
  22. }
  23.