forked from troglobit/MicroEMACS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepath.h
More file actions
45 lines (36 loc) · 600 Bytes
/
Copy pathepath.h
File metadata and controls
45 lines (36 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* 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[] = {
#ifdef AMIGA
".emacsrc",
"emacs.hlp",
"",
":c/",
":t/"
#endif
#ifdef MSDOS
"emacs.rc",
"emacs.hlp",
"\\sys\\public\\",
"\\usr\\bin\\",
"\\bin\\",
"\\",
""
#endif
#ifdef V7
".emacsrc",
"emacs.hlp",
"/usr/local/",
"/usr/lib/",
""
#endif
#ifdef VMS
"emacs.rc",
"emacs.hlp",
"",
"sys$sysdevice:[vmstools]"
#endif
};
#define NPNAMES (sizeof(pathname)/sizeof(char *))