diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-12-01 20:49:43 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-12-01 20:49:43 +0000 |
commit | 59f441f32ae37d4c69e7bd067f34830e6297ac30 (patch) | |
tree | 454f4b7eb81a3297bdc83dfc7c6346d28dd59c42 | |
parent | a6e90afbd273d09a4ef240c77b98b45d83d8551b (diff) |
(devio_notice_input_flushed): New function.
(devio_bottom): Add devio_notice_input_flushed.
-rw-r--r-- | term/devio.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/term/devio.c b/term/devio.c index b813178b..758a5722 100644 --- a/term/devio.c +++ b/term/devio.c @@ -361,6 +361,10 @@ devio_suspend_physical_output () } } +static void +devio_notice_input_flushed () +{ +} static int devio_pending_output_size () @@ -638,6 +642,7 @@ struct bottomhalf devio_bottom = devio_abandon_physical_output, devio_suspend_physical_output, devio_pending_output_size, + devio_notice_input_flushed, devio_assert_dtr, devio_desert_dtr, devio_set_bits, |