|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T e ┃
Length: 780 (0x30c) Types: TextFile Names: »epath.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/uEmacs/epath.h«
/* PATH: This file contains certain info needed to locate the MicroEMACS files on a system dependant basis. */ /* possible names and paths of help files under different OSs */ char *pathname[] = #if AMIGA { ".emacsrc", "emacs.hlp", "", ":c/", ":t/" }; #endif #if ST520 { "emacs.rc", "emacs.hlp", "\\", "\\bin\\", "\\util\\", "" }; #endif #if FINDER { "emacs.rc", "emacs.hlp", "/bin", "/sys/public", "" }; #endif #if MSDOS { "emacs.rc", "emacs.hlp", "\\sys\\public\\", "\\usr\\bin\\", "\\bin\\", "\\", "" }; #endif #if V7 | BSD | USG { ".emacsrc", "emacs.hlp", "/usr/local/", "/usr/lib/", "" }; #endif #if VMS { "emacs.rc", "emacs.hlp", "", "sys$sysdevice:[vmstools]" }; #endif #define NPNAMES (sizeof(pathname)/sizeof(char *))