aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-11 05:49:41 +0000
committerRichard M. Stallman1994-01-11 05:49:41 +0000
commit2ea6d561514f14c7c4d3479c9cf2b2d793c34ff1 (patch)
tree1a6f79062c7c17c39aadca2490f6cc3c93d3ee94 /src
parentae34566ab46931b370c6f0133ec57640d67ac0b9 (diff)
downloademacs-2ea6d561514f14c7c4d3479c9cf2b2d793c34ff1.tar.gz
emacs-2ea6d561514f14c7c4d3479c9cf2b2d793c34ff1.zip
(read_process_output): Supply second arg to unbind_to.
(exec_sentinel): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/process.c4
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