]> code.delx.au - gnu-emacs/commitdiff
* process.c (Fstart_process): Jimb's change of December 11
authorMichael I. Bushnell <mib@gnu.org>
Thu, 18 Feb 1993 03:43:45 +0000 (03:43 +0000)
committerMichael I. Bushnell <mib@gnu.org>
Thu, 18 Feb 1993 03:43:45 +0000 (03:43 +0000)
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.

src/callproc.c
src/process.c

index f5b1b95415db3e6e4d0b6f83cdd112e75dd4c5fa..6278b46022c36e75eb45217bd7b22f4fdcf08502 100644 (file)
@@ -187,7 +187,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.")
 
     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));
index 2a1d79a2cc2343021c8afc05fedbf59bd0a90a40..d0d90e90c0b2e0aa9925c55c52cf509ef85ffaa2 100644 (file)
@@ -987,7 +987,7 @@ Remaining arguments are strings to give program as arguments.")
 
     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));