Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
bc4498bb
Commit
bc4498bb
authored
Aug 14, 1995
by
Richard M. Stallman
Browse files
(Fcall_process_region): Pass new arg to Fwrite_region.
parent
7204a979
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/callproc.c
src/callproc.c
+2
-2
No files found.
src/callproc.c
View file @
bc4498bb
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment