diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-08-12 22:05:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-08-12 22:05:30 +0000 |
commit | 6c362a8bb2ddd97b0666b0c5849b6c17617b4d86 (patch) | |
tree | 9a9da48985ecbc87eb7b8ff78a50c67a7b2fea13 /src/emacs.c | |
parent | b7a11e21015676b8eacf6a531c2e76d274c293ea (diff) | |
download | emacs-6c362a8bb2ddd97b0666b0c5849b6c17617b4d86.tar.gz |
Include process.h.
(init_cmdargs): Use EXEC_SUFFIXES.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c index 321edbe15e5..ca03da1608a 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -47,6 +47,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "systty.h" #include "syssignal.h" +#include "process.h" #ifndef O_RDWR #define O_RDWR 2 @@ -169,7 +170,7 @@ init_cmdargs (argc, argv, skip_args) { Lisp_Object found; int yes = openp (Vexec_path, Vinvocation_name, - "", &found, 1); + EXEC_SUFFIXES, &found, 1); if (yes) Vinvocation_directory = Ffile_name_directory (found); } |