changeset 16728:309a750fd5c0

(read_process_output, exec_sentinel): Call Fmatch_data with new explicit arguments.
author Richard M. Stallman <rms@gnu.org>
date Thu, 19 Dec 1996 06:41:48 +0000
parents 45d9891b03b2
children d5e92ecd4595
files src/process.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Thu Dec 19 02:48:49 1996 +0000
+++ b/src/process.c	Thu Dec 19 06:41:48 1996 +0000
@@ -2530,9 +2530,9 @@
 	{
 	  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 @@
   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);
     }