Mercurial > emacs
diff src/process.c @ 5561:fd7524d61a8d
(read_process_output): Supply second arg to unbind_to.
(exec_sentinel): Likewise.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 11 Jan 1994 05:49:41 +0000 |
| parents | 36d2fd17f833 |
| children | 466bc8ef8e21 |
line wrap: on
line diff
--- a/src/process.c Tue Jan 11 05:47:14 1994 +0000 +++ b/src/process.c Tue Jan 11 05:49:41 1994 +0000 @@ -2116,7 +2116,7 @@ #ifdef VMS start_vms_process_read (vs); #endif - unbind_to (count); + unbind_to (count, Qnil); return nchars; } @@ -2882,7 +2882,7 @@ /* Inhibit quit so that random quits don't screw up a running filter. */ specbind (Qinhibit_quit, Qt); call2 (sentinel, proc, reason); - unbind_to (count); + unbind_to (count, Qnil); } /* Report all recent events of a change in process status
