2005-05-31 11:50:56 -04:00
|
|
|
/* EPATH.H
|
|
|
|
*
|
|
|
|
* This file contains certain info needed to locate the
|
|
|
|
* initialization (etc) files on a system dependent basis
|
|
|
|
*
|
|
|
|
* modified by Petri Kutvonen
|
|
|
|
*/
|
2010-06-11 00:32:18 -04:00
|
|
|
#ifndef EPATH_H_
|
|
|
|
#define EPATH_H_
|
2005-05-31 11:50:56 -04:00
|
|
|
|
|
|
|
/* possible names and paths of help files under different OSs */
|
2010-01-29 19:17:02 -05:00
|
|
|
static char *pathname[] =
|
2005-05-31 11:50:56 -04:00
|
|
|
#if MSDOS
|
|
|
|
{
|
|
|
|
"emacs.rc",
|
|
|
|
"emacs.hlp",
|
|
|
|
"\\sys\\public\\",
|
|
|
|
"\\usr\\bin\\",
|
|
|
|
"\\bin\\",
|
|
|
|
"\\",
|
|
|
|
""
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if V7 | BSD | USG
|
|
|
|
{
|
2005-09-30 18:26:09 -04:00
|
|
|
".emacsrc", "emacs.hlp",
|
2005-05-31 11:50:56 -04:00
|
|
|
#if PKCODE
|
2005-09-30 18:26:09 -04:00
|
|
|
"/usr/global/lib/", "/usr/local/bin/", "/usr/local/lib/",
|
2005-05-31 11:50:56 -04:00
|
|
|
#endif
|
2005-09-30 18:26:09 -04:00
|
|
|
"/usr/local/", "/usr/lib/", ""};
|
2005-05-31 11:50:56 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if VMS
|
|
|
|
{
|
2005-09-30 18:26:09 -04:00
|
|
|
"emacs.rc", "emacs.hlp", "",
|
2005-05-31 11:50:56 -04:00
|
|
|
#if PKCODE
|
2005-09-30 18:26:09 -04:00
|
|
|
"sys$login:", "emacs_dir:",
|
2005-05-31 11:50:56 -04:00
|
|
|
#endif
|
2005-09-30 18:26:09 -04:00
|
|
|
"sys$sysdevice:[vmstools]"};
|
2005-05-31 11:50:56 -04:00
|
|
|
#endif
|
|
|
|
|
2010-06-11 00:32:18 -04:00
|
|
|
#endif /* EPATH_H_ */
|