home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 001-099 / ff093.lzh / MicroEmacs / source / src.arc / epath.h < prev    next >
Text File  |  1987-08-16  |  784b  |  74 lines

  1. /*    PATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. char *pathname[] =
  9.  
  10. #if    AMIGA
  11. {
  12.     ".emacsrc",
  13.     "emacs.hlp",
  14.     ":",
  15.     "S:",
  16.     "C:",
  17.     ""
  18. };
  19. #endif
  20.  
  21. #if    ST520
  22. {
  23.     "emacs.rc",
  24.     "emacs.hlp",
  25.     "\\",
  26.     "\\bin\\",
  27.     "\\util\\",
  28.     ""
  29. };
  30. #endif
  31.  
  32. #if    FINDER
  33. {
  34.     "emacs.rc",
  35.     "emacs.hlp",
  36.     "/bin",
  37.     "/sys/public",
  38.     ""
  39. };
  40. #endif
  41.  
  42. #if    MSDOS
  43. {
  44.     "emacs.rc",
  45.     "emacs.hlp",
  46.     "\\sys\\public\\",
  47.     "\\usr\\bin\\",
  48.     "\\bin\\",
  49.     "\\",
  50.     ""
  51. };
  52. #endif
  53.  
  54. #if    V7 | BSD | USG
  55. {
  56.     ".emacsrc",
  57.     "emacs.hlp",
  58.     "/usr/local/",
  59.     "/usr/lib/",
  60.     ""
  61. };
  62. #endif
  63.  
  64. #if    VMS
  65. {
  66.     "emacs.rc",
  67.     "emacs.hlp",
  68.     "",
  69.     "sys$sysdevice:[vmstools]"
  70. };
  71. #endif
  72.  
  73. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  74.