aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-08-14 17:26:50 +0000
committerRichard M. Stallman <[email protected]>1995-08-14 17:26:50 +0000
commitbc4498bb8685cba76b65933b70f13ce6a80d6488 (patch)
tree9ed05e389a836d0dc4b7482eaf6abc3b00451f9d /src
parent7204a979c6e91be39a0549949c983f0d504bf711 (diff)
(Fcall_process_region): Pass new arg to Fwrite_region.
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 3838348f0f..6ea2fe0a76 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.")
end = args[1];
#ifdef DOS_NT
specbind (Qbuffer_file_type, Vbinary_process_input);
- Fwrite_region (start, end, filename_string, Qnil, Qlambda);
+ Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil);
unbind_to (count, Qnil);
#else /* not DOS_NT */
- Fwrite_region (start, end, filename_string, Qnil, Qlambda);
+ Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil);
#endif /* not DOS_NT */
record_unwind_protect (delete_temp_file, filename_string);