chiark / gitweb /
*** empty log message ***
[sympathy.git] / apps / sympathy.c
index 4ea7bf00e730fd8a81ceda048e4d259295418eae..b24e6d001ad9c5b27312cfcaa27670f35bde5707 100644 (file)
@@ -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;
 }