aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes2000-08-22 21:50:38 +0000
committerAndrew Innes2000-08-22 21:50:38 +0000
commitf5d9ebeeadc394ca41606a67c23cec123a1bdc27 (patch)
tree2958913f149f24e139be107164adaac93a8f4c88
parent50a6026b8bf97c1de25d2d5581e451ccc002a6fb (diff)
downloademacs-f5d9ebeeadc394ca41606a67c23cec123a1bdc27.tar.gz
emacs-f5d9ebeeadc394ca41606a67c23cec123a1bdc27.zip
Use forward slash as directory separator in all path
definitions. (PATH_DUMPLOADSEARCH): Revert to definition used on Unix.
-rw-r--r--nt/paths.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/nt/paths.h b/nt/paths.h
index f8a91e837cd..803f6a4e35c 100644
--- a/nt/paths.h
+++ b/nt/paths.h
@@ -5,14 +5,13 @@
5/* The default search path for Lisp function "load". 5/* The default search path for Lisp function "load".
6 This sets load-path. */ 6 This sets load-path. */
7/* #define PATH_LOADSEARCH "/usr/local/lib/emacs/lisp" */ 7/* #define PATH_LOADSEARCH "/usr/local/lib/emacs/lisp" */
8#define PATH_LOADSEARCH "C:\\emacs\\lisp" 8#define PATH_LOADSEARCH "C:/emacs/lisp"
9 9
10/* Like PATH_LOADSEARCH, but used only when Emacs is dumping. This 10/* Like PATH_LOADSEARCH, but used only when Emacs is dumping. This
11 path is usually identical to PATH_LOADSEARCH except that the entry 11 path is usually identical to PATH_LOADSEARCH except that the entry
12 for the directory containing the installed lisp files has been 12 for the directory containing the installed lisp files has been
13 replaced with ../lisp. */ 13 replaced with ../lisp. */
14/* #define PATH_DUMPLOADSEARCH "../lisp" */ 14#define PATH_DUMPLOADSEARCH "../lisp"
15#define PATH_DUMPLOADSEARCH "..\\..\\..\\lisp"
16 15
17/* The extra search path for programs to invoke. This is appended to 16/* The extra search path for programs to invoke. This is appended to
18 whatever the PATH environment variable says to set the Lisp 17 whatever the PATH environment variable says to set the Lisp
@@ -20,27 +19,27 @@
20 variable exec-directory. exec-directory is used for finding 19 variable exec-directory. exec-directory is used for finding
21 executables and other architecture-dependent files. */ 20 executables and other architecture-dependent files. */
22/* #define PATH_EXEC "/usr/local/lib/emacs/etc" */ 21/* #define PATH_EXEC "/usr/local/lib/emacs/etc" */
23#define PATH_EXEC "C:\\emacs\\bin" 22#define PATH_EXEC "C:/emacs/bin"
24 23
25/* Where Emacs should look for its architecture-independent data 24/* Where Emacs should look for its architecture-independent data
26 files, like the NEWS file. The lisp variable data-directory 25 files, like the NEWS file. The lisp variable data-directory
27 is set to this value. */ 26 is set to this value. */
28/* #define PATH_DATA "/usr/local/lib/emacs/data" */ 27/* #define PATH_DATA "/usr/local/lib/emacs/data" */
29#define PATH_DATA "C:\\emacs\\data" 28#define PATH_DATA "C:/emacs/data"
30 29
31/* Where Emacs should look for its docstring file. The lisp variable 30/* Where Emacs should look for its docstring file. The lisp variable
32 doc-directory is set to this value. */ 31 doc-directory is set to this value. */
33#define PATH_DOC "C:\\emacs\\etc" 32#define PATH_DOC "C:/emacs/etc"
34 33
35/* The name of the directory that contains lock files with which we 34/* The name of the directory that contains lock files with which we
36 record what files are being modified in Emacs. This directory 35 record what files are being modified in Emacs. This directory
37 should be writable by everyone. THE STRING MUST END WITH A 36 should be writable by everyone. THE STRING MUST END WITH A
38 SLASH!!! */ 37 SLASH!!! */
39/* #define PATH_LOCK "/usr/local/lib/emacs/lock/" */ 38/* #define PATH_LOCK "/usr/local/lib/emacs/lock/" */
40#define PATH_LOCK "C:\\emacs\\lock\\" 39#define PATH_LOCK "C:/emacs/lock/"
41 40
42/* Where the configuration process believes the info tree lives. The 41/* Where the configuration process believes the info tree lives. The
43 lisp variable configure-info-directory gets its value from this 42 lisp variable configure-info-directory gets its value from this
44 macro, and is then used to set the Info-default-directory-list. */ 43 macro, and is then used to set the Info-default-directory-list. */
45/* #define PATH_INFO "/usr/local/info" */ 44/* #define PATH_INFO "/usr/local/info" */
46#define PATH_INFO "C:\\emacs\\info" 45#define PATH_INFO "C:/emacs/info"