diff options
| author | Stefan Monnier | 2002-04-30 01:01:37 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-04-30 01:01:37 +0000 |
| commit | cc4db0c748a2926df927cbc6e35cf8949fc44a95 (patch) | |
| tree | 85b6bb3116131164faac73c6d96d839e9cab45d6 | |
| parent | 141f653a89013bcd165b66b3d30a683bb97c6021 (diff) | |
| download | emacs-cc4db0c748a2926df927cbc6e35cf8949fc44a95.tar.gz emacs-cc4db0c748a2926df927cbc6e35cf8949fc44a95.zip | |
(Fstart_process): Update call to openp.
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index a62b13c3f38..cdd9b61f7bc 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1430,7 +1430,7 @@ usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) | |||
| 1430 | 1430 | ||
| 1431 | tem = Qnil; | 1431 | tem = Qnil; |
| 1432 | GCPRO4 (name, program, buffer, current_dir); | 1432 | GCPRO4 (name, program, buffer, current_dir); |
| 1433 | openp (Vexec_path, program, Vexec_suffixes, &tem, 1); | 1433 | openp (Vexec_path, program, Vexec_suffixes, &tem, make_number (X_OK)); |
| 1434 | UNGCPRO; | 1434 | UNGCPRO; |
| 1435 | if (NILP (tem)) | 1435 | if (NILP (tem)) |
| 1436 | report_file_error ("Searching for program", Fcons (program, Qnil)); | 1436 | report_file_error ("Searching for program", Fcons (program, Qnil)); |