diff options
| author | Michael I. Bushnell | 1993-02-18 03:43:45 +0000 |
|---|---|---|
| committer | Michael I. Bushnell | 1993-02-18 03:43:45 +0000 |
| commit | 82df4891d0872f5105c1f029b6f07fe3194e3553 (patch) | |
| tree | 174e4394a549bf547acc9608d12d158416a85551 /src/process.c | |
| parent | 4ae7d00a1e00f0b131fe5442ac3a87a93f433457 (diff) | |
| download | emacs-82df4891d0872f5105c1f029b6f07fe3194e3553.tar.gz emacs-82df4891d0872f5105c1f029b6f07fe3194e3553.zip | |
* process.c (Fstart_process): Jimb's change of December 11
had a misplaced paren. This only became apparent because of
jimb's change on February 8 to Fexpand_file_name.
* callproc.c (Fcall_process): Ditto.
Diffstat (limited to 'src/process.c')
| -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 2a1d79a2cc2..d0d90e90c0b 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -987,7 +987,7 @@ Remaining arguments are strings to give program as arguments.") | |||
| 987 | 987 | ||
| 988 | current_dir = | 988 | current_dir = |
| 989 | expand_and_dir_to_file | 989 | expand_and_dir_to_file |
| 990 | (Funhandled_file_name_directory (current_dir, Qnil)); | 990 | (Funhandled_file_name_directory (current_dir), Qnil); |
| 991 | if (NILP (Ffile_accessible_directory_p (current_dir))) | 991 | if (NILP (Ffile_accessible_directory_p (current_dir))) |
| 992 | report_file_error ("Setting current directory", | 992 | report_file_error ("Setting current directory", |
| 993 | Fcons (current_buffer->directory, Qnil)); | 993 | Fcons (current_buffer->directory, Qnil)); |