diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/mainloop.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/mainloop.c b/apps/mainloop.c index fd8f982..7fb269a 100644 --- a/apps/mainloop.c +++ b/apps/mainloop.c @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.8 2008/02/22 23:39:30 james + * *** empty log message *** + * * Revision 1.7 2008/02/20 20:16:07 james * *** empty log message *** * @@ -334,7 +337,7 @@ msg_from_server (ANSI *a,IPC_Msg * m, Context * c) //FIXME HTML hook break; case IPC_MSG_TYPE_TERM: - vt102_parse (c, m->term.term, m->term.len); + tty_parse (c, m->term.term, m->term.len); break; case IPC_MSG_TYPE_STATUS: cmd_new_status (c->d, c, m->status.status); @@ -464,7 +467,7 @@ mainloop (TTY * tty, Socket * server_socket, Socket * client_socket, { if (clients) send_output (clients, buf, red); - vt102_parse (&c, buf, red); + tty_parse (&c, buf, red); } } |