aboutsummaryrefslogtreecommitdiffstats
path: root/pty-unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'pty-unix.c')
-rw-r--r--pty-unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pty-unix.c b/pty-unix.c
index bf66749..4664f16 100644
--- a/pty-unix.c
+++ b/pty-unix.c
@@ -116,12 +116,12 @@ static void runes_pty_backend_got_data(uv_work_t *req, int status)
t = data->data.t;
if (data->len > 0) {
- runes_handle_pty_read(t, data->buf, data->len);
+ runes_vt100_process_string(t, data->buf, data->len);
uv_queue_work(
t->loop, req, runes_pty_backend_read, runes_pty_backend_got_data);
}
else {
- runes_handle_pty_close(t);
+ runes_window_backend_request_close(t);
free(req);
}
}