Mercurial > emacs
changeset 21177:73f8ae8312c8
(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
(Fstart_process): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 14 Mar 1998 08:23:21 +0000 |
parents | c42a2b3bbb21 |
children | 85fd58cb0654 |
files | src/process.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Sat Mar 14 08:20:37 1998 +0000 +++ b/src/process.c Sat Mar 14 08:23:21 1998 +0000 @@ -1033,7 +1033,7 @@ 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 @@ /* 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 @@ 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,