diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-04-30 01:00:24 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-04-30 01:00:24 +0000 |
commit | 5c15096143974ef5d8931a221a2d6c95da9fe0e5 (patch) | |
tree | 8f5d94f31ea1b5b1653b7a4fd81c7ad0a20bfa7a /src/callproc.c | |
parent | 86d008122bd0e2de52393a2b975edf53019d6fef (diff) | |
download | emacs-5c15096143974ef5d8931a221a2d6c95da9fe0e5.tar.gz |
(Fcall_process): Update call to openp.
Diffstat (limited to 'src/callproc.c')
-rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index 7f4993c9bf7..196f8a669ac 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -381,7 +381,7 @@ usage: (call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS) */) struct gcpro gcpro1; GCPRO1 (current_dir); - openp (Vexec_path, args[0], Vexec_suffixes, &path, 1); + openp (Vexec_path, args[0], Vexec_suffixes, &path, make_number (X_OK)); UNGCPRO; } if (NILP (path)) |