home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / Editors / mjovesrc.zoo / tune.tem < prev    next >
Text File  |  1990-09-29  |  1KB  |  29 lines

  1. /***************************************************************************
  2.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  3.  * is provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is    *
  5.  * included in all the files.                                              *
  6.  ***************************************************************************/
  7.  
  8. #include "jove.h"
  9.  
  10. char    *d_tempfile = "joveXXXXXX",    /* buffer lines go here */
  11.     *p_tempfile = "jrecXXXXXX",    /* line pointers go here */
  12.     *Recover = "LIBDIR/recover",
  13.     *CmdDb = "SHAREDIR/cmds.doc",
  14.         /* copy of "cmds.doc" lives in the doc subdirectory */
  15.  
  16.     *Joverc = "SHAREDIR/jove.rc",
  17.  
  18. #if defined(IPROCS) && defined(PIPEPROCS)
  19.     *Portsrv = "LIBDIR/portsrv",
  20.     *Kbd_Proc = "LIBDIR/kbd",
  21. #endif
  22.  
  23. /* these are variables that can be set with the set command, so they are
  24.    allocated more memory than they actually need for the defaults */
  25.  
  26.     TmpFilePath[FILESIZE] = "TMPDIR",
  27.     Shell[FILESIZE] = "SHELL",
  28.     ShFlags[16] = "-c";
  29.