summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-12-19 06:41:48 +0000
committerRichard M. Stallman <rms@gnu.org>1996-12-19 06:41:48 +0000
commita29994fd9cfb2c38a9fe5b9ba5ca25c4478d8781 (patch)
treedf3b1b8bf7c94e03242492a284537e0f325b6c4e /src
parent48d15335a64e042004eac2bdd18367077bc6fca3 (diff)
downloademacs-a29994fd9cfb2c38a9fe5b9ba5ca25c4478d8781.tar.gz
(read_process_output, exec_sentinel):
Call Fmatch_data with new explicit arguments.
Diffstat (limited to 'src')
-rw-r--r--src/process.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c
index 5d2f7133341..3325ffc1cea 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2530,9 +2530,9 @@ read_process_output (proc, channel)
{
Lisp_Object tem;
/* Don't clobber the CURRENT match data, either! */
- tem = Fmatch_data ();
+ tem = Fmatch_data (Qnil, Qnil);
restore_match_data ();
- record_unwind_protect (Fstore_match_data, Fmatch_data ());
+ record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
Fstore_match_data (tem);
}
@@ -3562,9 +3562,9 @@ exec_sentinel (proc, reason)
if (outer_running_asynch_code)
{
Lisp_Object tem;
- tem = Fmatch_data ();
+ tem = Fmatch_data (Qnil, Qnil);
restore_match_data ();
- record_unwind_protect (Fstore_match_data, Fmatch_data ());
+ record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
Fstore_match_data (tem);
}