From: Richard M. Stallman <rms@gnu.org>
Date: Sat, 14 Mar 1998 08:23:21 +0000 (+0000)
Subject: (exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
X-Git-Tag: emacs-20.3~1897
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8f1ecd05a8e974f3cde81bebb3c1ef955a01eb82;p=emacs.git

(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.

(Fstart_process): Doc fix.
---

diff --git a/src/process.c b/src/process.c
index 65132d3fdb9..5c5b71e6954 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1033,7 +1033,7 @@ BUFFER is the buffer or (buffer-name) to associate with the process.\n\
  an output stream or filter function to handle the output.\n\
  BUFFER may be also nil, meaning that this process is not associated\n\
  with any buffer.\n\
-Third arg is program file name.  It is searched for as in the shell.\n\
+Third arg is program file name.  It is searched for in PATH.\n\
 Remaining arguments are strings to give program as arguments.")
   (nargs, args)
      int nargs;
@@ -2892,8 +2892,8 @@ read_process_output (proc, channel)
 	  /* Don't clobber the CURRENT match data, either!  */
 	  tem = Fmatch_data (Qnil, Qnil);
 	  restore_match_data ();
-	  record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
-	  Fstore_match_data (tem);
+	  record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
+	  Fset_match_data (tem);
 	}
 
       /* For speed, if a search happens within this code,
@@ -4028,8 +4028,8 @@ exec_sentinel (proc, reason)
       Lisp_Object tem;
       tem = Fmatch_data (Qnil, Qnil);
       restore_match_data ();
-      record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil));
-      Fstore_match_data (tem);
+      record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
+      Fset_match_data (tem);
     }
 
   /* For speed, if a search happens within this code,