aboutsummaryrefslogtreecommitdiffstats
path: root/src/ansi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ansi.c')
-rw-r--r--src/ansi.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ansi.c b/src/ansi.c
index 8d4d640..905866b 100644
--- a/src/ansi.c
+++ b/src/ansi.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.26 2008/02/20 20:16:07 james
+ * *** empty log message ***
+ *
* Revision 1.25 2008/02/20 19:44:37 james
* @@
*
@@ -866,7 +869,7 @@ static void ansi_free(ANSI *a)
}
-ANSI *ansi_new_from_terminal(ANSI *a,TTY *t)
+ANSI *ansi_new_from_terminal(TTY *t)
{
ANSI *ret;
@@ -879,5 +882,7 @@ ret->update=ansi_update;
ret->reset=ansi_reset;
ret->terminal_reset=ansi_terminal_reset;
ret->close=ansi_free;
+ret->dispatch=ansi_dispatch;
+return ret;
}