diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 301a44dd534..c2785e75fc9 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2116,7 +2116,7 @@ read_process_output (proc, channel) | |||
| 2116 | #ifdef VMS | 2116 | #ifdef VMS |
| 2117 | start_vms_process_read (vs); | 2117 | start_vms_process_read (vs); |
| 2118 | #endif | 2118 | #endif |
| 2119 | unbind_to (count); | 2119 | unbind_to (count, Qnil); |
| 2120 | return nchars; | 2120 | return nchars; |
| 2121 | } | 2121 | } |
| 2122 | 2122 | ||
| @@ -2882,7 +2882,7 @@ exec_sentinel (proc, reason) | |||
| 2882 | /* Inhibit quit so that random quits don't screw up a running filter. */ | 2882 | /* Inhibit quit so that random quits don't screw up a running filter. */ |
| 2883 | specbind (Qinhibit_quit, Qt); | 2883 | specbind (Qinhibit_quit, Qt); |
| 2884 | call2 (sentinel, proc, reason); | 2884 | call2 (sentinel, proc, reason); |
| 2885 | unbind_to (count); | 2885 | unbind_to (count, Qnil); |
| 2886 | } | 2886 | } |
| 2887 | 2887 | ||
| 2888 | /* Report all recent events of a change in process status | 2888 | /* Report all recent events of a change in process status |