summaryrefslogtreecommitdiff
path: root/term/ptyio.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-06-26 19:22:58 +0000
committerRoland McGrath <roland@gnu.org>2002-06-26 19:22:58 +0000
commit58dac2e796c106c068fd98302385eab0be35f16c (patch)
tree9c8381f93cbbc1f38a2755281ff0f1c3b6735fe0 /term/ptyio.c
parent715d9934e61502ac5c886deab06af48a45da111f (diff)
2002-06-25 Roland McGrath <roland@frob.com>
* term.h (struct bottomhalf): New member `fini'. * hurdio.c (hurdio_fini): New function. (hurdio_bottom): Use it. * devio.c (devio_fini): New function. (devio_bottom): Use it. * ptyio.c (ptyio_bottom): Add 0 entry for `fini'.
Diffstat (limited to 'term/ptyio.c')
-rw-r--r--term/ptyio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/term/ptyio.c b/term/ptyio.c
index 98fb5052..9c1509ff 100644
--- a/term/ptyio.c
+++ b/term/ptyio.c
@@ -276,7 +276,8 @@ const struct bottomhalf ptyio_bottom =
{
TERM_ON_MASTERPTY,
ptyio_init,
- NULL,
+ NULL, /* fini */
+ NULL, /* gwinsz */
ptyio_start_output,
ptyio_set_break,
ptyio_clear_break,