aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c10
1 files changed, 5 insertions, 5 deletions
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\
1033 an output stream or filter function to handle the output.\n\ 1033 an output stream or filter function to handle the output.\n\
1034 BUFFER may be also nil, meaning that this process is not associated\n\ 1034 BUFFER may be also nil, meaning that this process is not associated\n\
1035 with any buffer.\n\ 1035 with any buffer.\n\
1036Third arg is program file name. It is searched for as in the shell.\n\ 1036Third arg is program file name. It is searched for in PATH.\n\
1037Remaining arguments are strings to give program as arguments.") 1037Remaining arguments are strings to give program as arguments.")
1038 (nargs, args) 1038 (nargs, args)
1039 int nargs; 1039 int nargs;
@@ -2892,8 +2892,8 @@ read_process_output (proc, channel)
2892 /* Don't clobber the CURRENT match data, either! */ 2892 /* Don't clobber the CURRENT match data, either! */
2893 tem = Fmatch_data (Qnil, Qnil); 2893 tem = Fmatch_data (Qnil, Qnil);
2894 restore_match_data (); 2894 restore_match_data ();
2895 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); 2895 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
2896 Fstore_match_data (tem); 2896 Fset_match_data (tem);
2897 } 2897 }
2898 2898
2899 /* For speed, if a search happens within this code, 2899 /* For speed, if a search happens within this code,
@@ -4028,8 +4028,8 @@ exec_sentinel (proc, reason)
4028 Lisp_Object tem; 4028 Lisp_Object tem;
4029 tem = Fmatch_data (Qnil, Qnil); 4029 tem = Fmatch_data (Qnil, Qnil);
4030 restore_match_data (); 4030 restore_match_data ();
4031 record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); 4031 record_unwind_protect (Fset_match_data, Fmatch_data (Qnil, Qnil));
4032 Fstore_match_data (tem); 4032 Fset_match_data (tem);
4033 } 4033 }
4034 4034
4035 /* For speed, if a search happens within this code, 4035 /* For speed, if a search happens within this code,