diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c index 3838348f0fb..6ea2fe0a76d 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -647,10 +647,10 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") | |||
| 647 | end = args[1]; | 647 | end = args[1]; |
| 648 | #ifdef DOS_NT | 648 | #ifdef DOS_NT |
| 649 | specbind (Qbuffer_file_type, Vbinary_process_input); | 649 | specbind (Qbuffer_file_type, Vbinary_process_input); |
| 650 | Fwrite_region (start, end, filename_string, Qnil, Qlambda); | 650 | Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil); |
| 651 | unbind_to (count, Qnil); | 651 | unbind_to (count, Qnil); |
| 652 | #else /* not DOS_NT */ | 652 | #else /* not DOS_NT */ |
| 653 | Fwrite_region (start, end, filename_string, Qnil, Qlambda); | 653 | Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil); |
| 654 | #endif /* not DOS_NT */ | 654 | #endif /* not DOS_NT */ |
| 655 | 655 | ||
| 656 | record_unwind_protect (delete_temp_file, filename_string); | 656 | record_unwind_protect (delete_temp_file, filename_string); |