X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=apps%2Fsympathy.c;h=b24e6d001ad9c5b27312cfcaa27670f35bde5707;hb=5cded6a34ead3205baf1a45ed5adbee24ebec685;hp=4ea7bf00e730fd8a81ceda048e4d259295418eae;hpb=11313f344099e326aaf010fb9781b921df3b1967;p=sympathy.git diff --git a/apps/sympathy.c b/apps/sympathy.c index 4ea7bf0..b24e6d0 100644 --- a/apps/sympathy.c +++ b/apps/sympathy.c @@ -6,10 +6,14 @@ * */ -static char rcsid[] = "$Id$"; +static char rcsid[] = + "$Id$"; /* * $Log$ + * Revision 1.12 2008/02/23 11:48:52 james + * *** empty log message *** + * * Revision 1.11 2008/02/20 20:16:07 james * *** empty log message *** * @@ -471,13 +475,13 @@ main (int argc, char *argv[]) if (oflags['H']) { - ansi=ansi_new_html(stdout); + ansi = ansi_new_html (stdout); } else { terminal_register_handlers (); - ansi=ansi_new_from_terminal(terminal_open(0,1)); - ansi->reset(ansi, NULL); + ansi = ansi_new_from_terminal (terminal_open (0, 1)); + ansi->reset (ansi, NULL); } } @@ -485,7 +489,7 @@ main (int argc, char *argv[]) if (ansi) { - ansi->close(ansi); + ansi->close (ansi); terminal_atexit (); } @@ -500,6 +504,6 @@ main (int argc, char *argv[]) socket_free (client_socket); if (!oflags['H']) - printf ("you have now exited sympathy\n"); + printf ("you have now exited sympathy\n"); return 0; }