diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-12 16:24:12 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-12 16:24:12 +0100 |
commit | 734f37136558f9cc4ae0d2d3507125d7e65c9986 (patch) | |
tree | dc4bffc50ab6100da43a53199c0582316ff5c2ab /src/process.c | |
parent | d165b5a46b2a84c637a80200ad6bcf164bbfa77b (diff) | |
download | emacs-734f37136558f9cc4ae0d2d3507125d7e65c9986.tar.gz emacs-734f37136558f9cc4ae0d2d3507125d7e65c9986.tar.bz2 emacs-734f37136558f9cc4ae0d2d3507125d7e65c9986.zip |
Remove some unused process.c variables
* src/process.c (wait_reading_process_output): Remove some
variables that are unused after the previous patch.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/process.c b/src/process.c index 48b727d9e3b..4fe8ac7fc0c 100644 --- a/src/process.c +++ b/src/process.c @@ -5328,8 +5328,6 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd, do { unsigned old_timers_run = timers_run; - struct buffer *old_buffer = current_buffer; - Lisp_Object old_window = selected_window; timer_delay = timer_check (); @@ -5686,9 +5684,6 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd, if (read_kbd != 0) { - unsigned old_timers_run = timers_run; - struct buffer *old_buffer = current_buffer; - Lisp_Object old_window = selected_window; bool leave = false; if (detect_input_pending_run_timers (do_display)) |