aboutsummaryrefslogtreecommitdiffstats
path: root/src/vmspaths.h
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-22 12:01:57 +0000
committerGerd Moellmann2001-02-22 12:01:57 +0000
commit3473f362e6f6f67ac2f0f9db47f49cbc3dae6b87 (patch)
tree31c554d09223e9899e33ffc4b22d6a41bd0ef49e /src/vmspaths.h
parent7c0be49625d723d91b450f41b678501c006f816a (diff)
downloademacs-3473f362e6f6f67ac2f0f9db47f49cbc3dae6b87.tar.gz
emacs-3473f362e6f6f67ac2f0f9db47f49cbc3dae6b87.zip
*** empty log message ***
Diffstat (limited to 'src/vmspaths.h')
-rw-r--r--src/vmspaths.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/vmspaths.h b/src/vmspaths.h
deleted file mode 100644
index ae2d9ba4a5c..00000000000
--- a/src/vmspaths.h
+++ /dev/null
@@ -1,32 +0,0 @@
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 "EMACS_LIBRARY:[LOCAL-LISP],EMACS_LIBRARY:[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 "EMACS_LIBRARY:[LIB-SRC]"
19
20/* Where Emacs should look for its architecture-independent data
21 files, like the docstring file. The lisp variable data-directory
22 is set to this value. */
23#define PATH_DATA "EMACS_LIBRARY:[ETC]"
24
25/* the name of the directory that contains lock files
26 with which we record what files are being modified in Emacs.
27 This directory should be writable by everyone. */
28#define PATH_LOCK "EMACS_LIBRARY:[LOCK]"
29
30/* the name of the file !!!SuperLock!!! in the directory
31 specified by PATH_LOCK. Yes, this is redundant. */
32#define PATH_SUPERLOCK "EMACS_LIBRARY:[LOCK]$$$SUPERLOCK$$$."