aboutsummaryrefslogtreecommitdiffstats
path: root/src/ansi.c
diff options
context:
space:
mode:
authorjames <>2008-02-20 20:16:07 +0000
committerjames <>2008-02-20 20:16:07 +0000
commit72bf4c274834b91ce599ae272fb5159913b8e033 (patch)
treee84fcc5c7fc3dfa04ddb840f04afa5e15233e739 /src/ansi.c
parent8e2bb9b2970ecb7ca3919b074e4474b878bd02bb (diff)
downloadsympathy-72bf4c274834b91ce599ae272fb5159913b8e033.tar.gz
sympathy-72bf4c274834b91ce599ae272fb5159913b8e033.tar.bz2
sympathy-72bf4c274834b91ce599ae272fb5159913b8e033.zip
*** empty log message ***
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;
}