Mercurial > emacs
annotate src/epaths.in @ 20892:18f3cb26243f before-miles-orphaned-changes gcc-2_8_1-980401 gcc-2_8_1-980407 gcc-2_8_1-980412 gcc-2_8_1-980413 gcc-2_8_1-RELEASE gcc_2_8_1-980315 libc-980214 libc-980215 libc-980216 libc-980217 libc-980218 libc-980219 libc-980220 libc-980221 libc-980222 libc-980223 libc-980224 libc-980225 libc-980226 libc-980227 libc-980228 libc-980301 libc-980302 libc-980303 libc-980304 libc-980306 libc-980307 libc-980308 libc-980309 libc-980310 libc-980311 libc-980312 libc-980313 libc-980314 libc-980315 libc-980316 libc-980317 libc-980318 libc-980319 libc-980320 libc-980321 libc-980322 libc-980323 libc-980324 libc-980325 libc-980326 libc-980327 libc-980328 libc-980329 libc-980330 libc-980331 libc-980401 libc-980402 libc-980403 libc-980404 libc-980405 libc-980406 libc-980407 libc-980408 libc-980409 libc-980410 libc-980411 libc-980412 libc-980413 libc-980414 libc-980428 libc-980429 libc-980430 libc-980501 libc-980502 libc-980503 libc-980504 libc-980505 libc-980506 libc-980507 libc-980508 libc-980509 libc-980510 libc-980512 libc-980513 libc-980514 libc-980515 libc-980516 libc-980517 libc-980518 libc-980519 libc-980520 libc-980521 libc-980522 libc-980523 libc-980524 libc-980525 libc-980526 libc-980527 libc-980528 libc-980529 libc-980530 libc-980531 libc-980601 libc-980602 libc-980603 libc-980604 libc-980605 libc-980606 libc-980607 libc-980608 libc-980609 libc-980610 libc-980611 libc-980612 libc-980613
Add PentiumII (i786). Add '7' to all i[3456] entries.
Add AMD and Cyrix names for P5 and P6.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Fri, 13 Feb 1998 12:16:46 +0000 |
parents | ef499d854610 |
children | eb8c3b651c8e |
rev | line source |
---|---|
616 | 1 /* Hey Emacs, this is -*- C -*- code! */ |
2 | |
3 /* The default search path for Lisp function "load". | |
4 This sets load-path. */ | |
5 #define PATH_LOADSEARCH "/usr/local/lib/emacs/lisp" | |
6 | |
7 /* Like PATH_LOADSEARCH, but used only when Emacs is dumping. This | |
8 path is usually identical to PATH_LOADSEARCH except that the entry | |
9 for the directory containing the installed lisp files has been | |
10 replaced with ../lisp. */ | |
11 #define PATH_DUMPLOADSEARCH "../lisp" | |
12 | |
13 /* The extra search path for programs to invoke. This is appended to | |
14 whatever the PATH environment variable says to set the Lisp | |
15 variable exec-path and the first file name in it sets the Lisp | |
16 variable exec-directory. exec-directory is used for finding | |
17 executables and other architecture-dependent files. */ | |
18 #define PATH_EXEC "/usr/local/lib/emacs/etc" | |
19 | |
20 /* Where Emacs should look for its architecture-independent data | |
6032
07507709e0fe
New path PATH_DOC for doc-directory.
Karl Heuer <kwzh@gnu.org>
parents:
3064
diff
changeset
|
21 files, like the NEWS file. The lisp variable data-directory |
616 | 22 is set to this value. */ |
23 #define PATH_DATA "/usr/local/lib/emacs/data" | |
24 | |
9555
0fac2c0a026d
(PATH_BITMAPS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
6032
diff
changeset
|
25 /* Where Emacs should look for X bitmap files. |
0fac2c0a026d
(PATH_BITMAPS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
6032
diff
changeset
|
26 The lisp variable x-bitmap-file-path is set based on this value. */ |
0fac2c0a026d
(PATH_BITMAPS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
6032
diff
changeset
|
27 #define PATH_BITMAPS "/usr/include/X11/bitmaps" |
0fac2c0a026d
(PATH_BITMAPS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
6032
diff
changeset
|
28 |
6032
07507709e0fe
New path PATH_DOC for doc-directory.
Karl Heuer <kwzh@gnu.org>
parents:
3064
diff
changeset
|
29 /* Where Emacs should look for its docstring file. The lisp variable |
07507709e0fe
New path PATH_DOC for doc-directory.
Karl Heuer <kwzh@gnu.org>
parents:
3064
diff
changeset
|
30 doc-directory is set to this value. */ |
07507709e0fe
New path PATH_DOC for doc-directory.
Karl Heuer <kwzh@gnu.org>
parents:
3064
diff
changeset
|
31 #define PATH_DOC "/usr/local/lib/emacs/data" |
07507709e0fe
New path PATH_DOC for doc-directory.
Karl Heuer <kwzh@gnu.org>
parents:
3064
diff
changeset
|
32 |
3064
fa5466904709
* paths.h (PATH_INFO): New path, to edited by the configuration
Jim Blandy <jimb@redhat.com>
parents:
625
diff
changeset
|
33 /* Where the configuration process believes the info tree lives. The |
fa5466904709
* paths.h (PATH_INFO): New path, to edited by the configuration
Jim Blandy <jimb@redhat.com>
parents:
625
diff
changeset
|
34 lisp variable configure-info-directory gets its value from this |
fa5466904709
* paths.h (PATH_INFO): New path, to edited by the configuration
Jim Blandy <jimb@redhat.com>
parents:
625
diff
changeset
|
35 macro, and is then used to set the Info-default-directory-list. */ |
fa5466904709
* paths.h (PATH_INFO): New path, to edited by the configuration
Jim Blandy <jimb@redhat.com>
parents:
625
diff
changeset
|
36 #define PATH_INFO "/usr/local/info" |
19389
ef499d854610
(PATH_X_DEFAULTS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19217
diff
changeset
|
37 |
ef499d854610
(PATH_X_DEFAULTS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19217
diff
changeset
|
38 /* Where Emacs should look for the application default file. */ |
ef499d854610
(PATH_X_DEFAULTS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19217
diff
changeset
|
39 #define PATH_X_DEFAULTS "/usr/lib/X11/%L/%T/%N%C%S:/usr/lib/X11/%l/%T/%N%C%S:/usr/lib/X11/%T/%N%C%S:/usr/lib/X11/%L/%T/%N%S:/usr/lib/X11/%l/%T/%N%S:/usr/lib/X11/%T/%N%S" |