diff options
| author | Kenichi Handa | 1997-05-10 03:37:01 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-05-10 03:37:01 +0000 |
| commit | 69445b3bd47565ce54c5725ab1a74ca3943f2de4 (patch) | |
| tree | b2dbd9d4c80318b59309d3e1782f843982139587 /src | |
| parent | cb5373dd8df1c51a380ad2bfa7853a3197d192c1 (diff) | |
| download | emacs-69445b3bd47565ce54c5725ab1a74ca3943f2de4.tar.gz emacs-69445b3bd47565ce54c5725ab1a74ca3943f2de4.zip | |
(Fcall_process_region): Supply 7th new arg
CODING_SYSTEM as Qnil to Fwrite_region.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c index c4d631618e1..958ad19fb82 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -778,7 +778,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") | |||
| 778 | val = CONSP (coding_systems) ? XCONS (coding_systems)->cdr : Qnil; | 778 | val = CONSP (coding_systems) ? XCONS (coding_systems)->cdr : Qnil; |
| 779 | } | 779 | } |
| 780 | specbind (intern ("coding-system-for-write"), val); | 780 | specbind (intern ("coding-system-for-write"), val); |
| 781 | Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil); | 781 | Fwrite_region (start, end, filename_string, Qnil, Qlambda, Qnil, Qnil); |
| 782 | 782 | ||
| 783 | #ifdef DOS_NT | 783 | #ifdef DOS_NT |
| 784 | if (NILP (Vbinary_process_input)) | 784 | if (NILP (Vbinary_process_input)) |