aboutsummaryrefslogtreecommitdiffstats
path: root/pty-unix.c
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-04-13 16:21:06 -0400
committerJesse Luehrs <doy@tozt.net>2014-04-13 16:22:08 -0400
commit4d0d05d8e20861ab229a2ddad95c9bc1e655ab15 (patch)
treecc1155dd6a811e646e6fcbf8f2fb39893dbac34d /pty-unix.c
parent4d54ff3b9b84210ca28255a7c58888b4db805bff (diff)
downloadrunes-4d0d05d8e20861ab229a2ddad95c9bc1e655ab15.tar.gz
runes-4d0d05d8e20861ab229a2ddad95c9bc1e655ab15.zip
vt100 is misleading, just call it "parser"
my goal isn't to emulate vt100 to any serious extent, just enough to get by
Diffstat (limited to 'pty-unix.c')
-rw-r--r--pty-unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pty-unix.c b/pty-unix.c
index 6eda780..a5264f9 100644
--- a/pty-unix.c
+++ b/pty-unix.c
@@ -117,7 +117,7 @@ static void runes_pty_backend_got_data(uv_work_t *req, int status)
t = data->data.t;
if (data->len > 0) {
- runes_vt100_process_string(t, data->buf, data->len);
+ runes_parser_process_string(t, data->buf, data->len);
uv_queue_work(
t->loop, req, runes_pty_backend_read, runes_pty_backend_got_data);
}