aboutsummaryrefslogtreecommitdiffstats
path: root/src/pty-unix.c
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2015-08-20 01:37:52 -0400
committerJesse Luehrs <doy@tozt.net>2015-08-20 01:37:52 -0400
commit7f3b17bd263ac512e59354a33c43fd3b225ecc6d (patch)
tree6233b741b2c39989b8470da2d3618321fb7a9982 /src/pty-unix.c
parent9670e562fc024b4048927d691210aaa542dd3e67 (diff)
downloadrunes-7f3b17bd263ac512e59354a33c43fd3b225ecc6d.tar.gz
runes-7f3b17bd263ac512e59354a33c43fd3b225ecc6d.zip
use the libvt100 library
Diffstat (limited to 'src/pty-unix.c')
-rw-r--r--src/pty-unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pty-unix.c b/src/pty-unix.c
index b43ae6f..21e261b 100644
--- a/src/pty-unix.c
+++ b/src/pty-unix.c
@@ -152,8 +152,8 @@ static void runes_pty_backend_got_data(uv_work_t *req, int status)
UNUSED(status);
if (pty->readlen > 0) {
- runes_screen_process_string(
- t, pty->readbuf, pty->readlen + pty->remaininglen);
+ vt100_screen_process_string(
+ &t->scr, pty->readbuf, pty->readlen + pty->remaininglen);
uv_queue_work(
t->loop, req, runes_pty_backend_read, runes_pty_backend_got_data);
}