diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 2 | ||||
| -rw-r--r-- | src/process.c | 2 |
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)); |