aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael I. Bushnell1993-02-18 03:43:45 +0000
committerMichael I. Bushnell1993-02-18 03:43:45 +0000
commit82df4891d0872f5105c1f029b6f07fe3194e3553 (patch)
tree174e4394a549bf547acc9608d12d158416a85551 /src
parent4ae7d00a1e00f0b131fe5442ac3a87a93f433457 (diff)
downloademacs-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')
-rw-r--r--src/callproc.c2
-rw-r--r--src/process.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index f5b1b95415d..6278b46022c 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -187,7 +187,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
187 187
188 current_dir = 188 current_dir =
189 expand_and_dir_to_file 189 expand_and_dir_to_file
190 (Funhandled_file_name_directory (current_dir, Qnil)); 190 (Funhandled_file_name_directory (current_dir), Qnil);
191 if (NILP (Ffile_accessible_directory_p (current_dir))) 191 if (NILP (Ffile_accessible_directory_p (current_dir)))
192 report_file_error ("Setting current directory", 192 report_file_error ("Setting current directory",
193 Fcons (current_buffer->directory, Qnil)); 193 Fcons (current_buffer->directory, Qnil));
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));