Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8f1ecd05
Commit
8f1ecd05
authored
Mar 14, 1998
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(exec_sentinel, read_process_output): Fstore_match_data => Fset_match_data.
(Fstart_process): Doc fix.
parent
0320e66f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/process.c
src/process.c
+5
-5
No files found.
src/process.c
View file @
8f1ecd05
...
...
@@ -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
(
Fs
tor
e_match_data
,
Fmatch_data
(
Qnil
,
Qnil
));
Fs
tor
e_match_data
(
tem
);
record_unwind_protect
(
Fse
t
_match_data
,
Fmatch_data
(
Qnil
,
Qnil
));
Fse
t
_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
(
Fs
tor
e_match_data
,
Fmatch_data
(
Qnil
,
Qnil
));
Fs
tor
e_match_data
(
tem
);
record_unwind_protect
(
Fse
t
_match_data
,
Fmatch_data
(
Qnil
,
Qnil
));
Fse
t
_match_data
(
tem
);
}
/* For speed, if a search happens within this code,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment