Mercurial > emacs
changeset 1886:dd2e31cbf205
* 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.
author | Michael I. Bushnell <mib@gnu.org> |
---|---|
date | Thu, 18 Feb 1993 03:43:45 +0000 |
parents | 9e79ffe97d5b |
children | ab56990c27c4 |
files | src/callproc.c src/process.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callproc.c Wed Feb 17 21:30:25 1993 +0000 +++ b/src/callproc.c Thu Feb 18 03:43:45 1993 +0000 @@ -187,7 +187,7 @@ current_dir = expand_and_dir_to_file - (Funhandled_file_name_directory (current_dir, Qnil)); + (Funhandled_file_name_directory (current_dir), Qnil); if (NILP (Ffile_accessible_directory_p (current_dir))) report_file_error ("Setting current directory", Fcons (current_buffer->directory, Qnil));
--- a/src/process.c Wed Feb 17 21:30:25 1993 +0000 +++ b/src/process.c Thu Feb 18 03:43:45 1993 +0000 @@ -987,7 +987,7 @@ current_dir = expand_and_dir_to_file - (Funhandled_file_name_directory (current_dir, Qnil)); + (Funhandled_file_name_directory (current_dir), Qnil); if (NILP (Ffile_accessible_directory_p (current_dir))) report_file_error ("Setting current directory", Fcons (current_buffer->directory, Qnil));