aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1999-02-26 11:41:17 +0000
committerRichard M. Stallman1999-02-26 11:41:17 +0000
commit57bda87a9485ef8a85e9cafaf261628169006297 (patch)
treed744b74bce287929388416827b9e61796a6f2750 /src
parentaffb9299482fc846f1e29d1b8ffaa63c6d0874a1 (diff)
downloademacs-57bda87a9485ef8a85e9cafaf261628169006297.tar.gz
emacs-57bda87a9485ef8a85e9cafaf261628169006297.zip
Use epaths.h istead of paths.h.
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c4
-rw-r--r--src/lread.c4
-rw-r--r--src/w32fns.c2
-rw-r--r--src/xfns.c2
-rw-r--r--src/xrdb.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/callproc.c b/src/callproc.c
index c304858eea7..f7ce129cda6 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -73,7 +73,7 @@ extern char *strerror ();
73#include "charset.h" 73#include "charset.h"
74#include "ccl.h" 74#include "ccl.h"
75#include "coding.h" 75#include "coding.h"
76#include <paths.h> 76#include <epaths.h>
77#include "process.h" 77#include "process.h"
78#include "syssignal.h" 78#include "syssignal.h"
79#include "systty.h" 79#include "systty.h"
@@ -1250,7 +1250,7 @@ init_callproc_1 ()
1250 : PATH_DOC)); 1250 : PATH_DOC));
1251 1251
1252 /* Check the EMACSPATH environment variable, defaulting to the 1252 /* Check the EMACSPATH environment variable, defaulting to the
1253 PATH_EXEC path from paths.h. */ 1253 PATH_EXEC path from epaths.h. */
1254 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC); 1254 Vexec_path = decode_env_path ("EMACSPATH", PATH_EXEC);
1255 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path)); 1255 Vexec_directory = Ffile_name_as_directory (Fcar (Vexec_path));
1256 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path); 1256 Vexec_path = nconc2 (decode_env_path ("PATH", ""), Vexec_path);
diff --git a/src/lread.c b/src/lread.c
index f173205f94d..00a07cf4b70 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA. */
31#ifndef standalone 31#ifndef standalone
32#include "buffer.h" 32#include "buffer.h"
33#include "charset.h" 33#include "charset.h"
34#include <paths.h> 34#include <epaths.h>
35#include "commands.h" 35#include "commands.h"
36#include "keyboard.h" 36#include "keyboard.h"
37#include "termhooks.h" 37#include "termhooks.h"
@@ -3182,7 +3182,7 @@ See documentation of `read' for possible values.");
3182 "*List of directories to search for files to load.\n\ 3182 "*List of directories to search for files to load.\n\
3183Each element is a string (directory name) or nil (try default directory).\n\ 3183Each element is a string (directory name) or nil (try default directory).\n\
3184Initialized based on EMACSLOADPATH environment variable, if any,\n\ 3184Initialized based on EMACSLOADPATH environment variable, if any,\n\
3185otherwise to default specified by file `paths.h' when Emacs was built."); 3185otherwise to default specified by file `epaths.h' when Emacs was built.");
3186 3186
3187 DEFVAR_BOOL ("load-in-progress", &load_in_progress, 3187 DEFVAR_BOOL ("load-in-progress", &load_in_progress,
3188 "Non-nil iff inside of `load'."); 3188 "Non-nil iff inside of `load'.");
diff --git a/src/w32fns.c b/src/w32fns.c
index 25bec1f90ff..f2086b587c9 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -37,7 +37,7 @@ Boston, MA 02111-1307, USA. */
37#include "dispextern.h" 37#include "dispextern.h"
38#include "keyboard.h" 38#include "keyboard.h"
39#include "blockinput.h" 39#include "blockinput.h"
40#include "paths.h" 40#include "epaths.h"
41#include "w32heap.h" 41#include "w32heap.h"
42#include "termhooks.h" 42#include "termhooks.h"
43#include "coding.h" 43#include "coding.h"
diff --git a/src/xfns.c b/src/xfns.c
index b1b453854ec..d7097e06a10 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -36,7 +36,7 @@ Boston, MA 02111-1307, USA. */
36#include "dispextern.h" 36#include "dispextern.h"
37#include "keyboard.h" 37#include "keyboard.h"
38#include "blockinput.h" 38#include "blockinput.h"
39#include <paths.h> 39#include <epaths.h>
40#include "charset.h" 40#include "charset.h"
41#include "fontset.h" 41#include "fontset.h"
42 42
diff --git a/src/xrdb.c b/src/xrdb.c
index 0ab7992e5c2..1fda59cb22e 100644
--- a/src/xrdb.c
+++ b/src/xrdb.c
@@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA. */
28#include <unistd.h> 28#include <unistd.h>
29#endif 29#endif
30 30
31#include <paths.h> 31#include <epaths.h>
32 32
33#include <stdio.h> 33#include <stdio.h>
34 34