diff options
| author | Richard M. Stallman | 1996-12-19 06:41:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-19 06:41:48 +0000 |
| commit | dd13022778a9a064105d06534b9bbcb9019366dc (patch) | |
| tree | ccc2f4262dbcd814c3d1cf4ea61a937e83f7d124 /src | |
| parent | 03007ccc8b8245230944797795da4416a28da608 (diff) | |
| download | emacs-dd13022778a9a064105d06534b9bbcb9019366dc.tar.gz emacs-dd13022778a9a064105d06534b9bbcb9019366dc.zip | |
(read_process_output, exec_sentinel):
Call Fmatch_data with new explicit arguments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index 5d2f7133341..3325ffc1cea 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2530,9 +2530,9 @@ read_process_output (proc, channel) | |||
| 2530 | { | 2530 | { |
| 2531 | Lisp_Object tem; | 2531 | Lisp_Object tem; |
| 2532 | /* Don't clobber the CURRENT match data, either! */ | 2532 | /* Don't clobber the CURRENT match data, either! */ |
| 2533 | tem = Fmatch_data (); | 2533 | tem = Fmatch_data (Qnil, Qnil); |
| 2534 | restore_match_data (); | 2534 | restore_match_data (); |
| 2535 | record_unwind_protect (Fstore_match_data, Fmatch_data ()); | 2535 | record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); |
| 2536 | Fstore_match_data (tem); | 2536 | Fstore_match_data (tem); |
| 2537 | } | 2537 | } |
| 2538 | 2538 | ||
| @@ -3562,9 +3562,9 @@ exec_sentinel (proc, reason) | |||
| 3562 | if (outer_running_asynch_code) | 3562 | if (outer_running_asynch_code) |
| 3563 | { | 3563 | { |
| 3564 | Lisp_Object tem; | 3564 | Lisp_Object tem; |
| 3565 | tem = Fmatch_data (); | 3565 | tem = Fmatch_data (Qnil, Qnil); |
| 3566 | restore_match_data (); | 3566 | restore_match_data (); |
| 3567 | record_unwind_protect (Fstore_match_data, Fmatch_data ()); | 3567 | record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); |
| 3568 | Fstore_match_data (tem); | 3568 | Fstore_match_data (tem); |
| 3569 | } | 3569 | } |
| 3570 | 3570 | ||