]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_process_output, exec_sentinel):
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 Dec 1996 06:41:48 +0000 (06:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 Dec 1996 06:41:48 +0000 (06:41 +0000)
Call Fmatch_data with new explicit arguments.

src/process.c

index 5d2f71333418f0b2422a2f78cebdc246e82a0d7e..3325ffc1cea4b062e9ca4f1ab70c12aaeafe6e9e 100644 (file)
@@ -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);
     }