about summary refs log tree commit diff stats
path: root/src/profanity.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-07-24 15:43:51 +0100
committerJames Booth <boothj5@gmail.com>2016-07-24 15:43:51 +0100
commit0a57c4de78f8a3cd4efb631a79b000b42f16fc15 (patch)
tree39b0597b73f42f018b0006a1816cd76f56213e64 /src/profanity.c
parent5bc38b6bc2bdf135d7f483c204ce75a51a7126b5 (diff)
downloadprofani-tty-0a57c4de78f8a3cd4efb631a79b000b42f16fc15.tar.gz
Tidy headers
Diffstat (limited to 'src/profanity.c')
-rw-r--r--src/profanity.c30
1 files changed, 17 insertions, 13 deletions
diff --git a/src/profanity.c b/src/profanity.c
index 68f6bbb0..7d90c1c9 100644
--- a/src/profanity.c
+++ b/src/profanity.c
@@ -40,6 +40,7 @@
 #ifdef HAVE_GTK
 #include "ui/tray.h"
 #endif
+
 #include <locale.h>
 #include <signal.h>
 #include <stdlib.h>
@@ -48,32 +49,35 @@
 #include <glib.h>
 
 #include "profanity.h"
-#include "xmpp/chat_session.h"
-#include "xmpp/chat_state.h"
+#include "common.h"
+#include "log.h"
+#include "config/tlscerts.h"
 #include "config/accounts.h"
 #include "config/preferences.h"
 #include "config/theme.h"
+#include "config/tlscerts.h"
 #include "config/scripts.h"
 #include "command/cmd_defs.h"
-#include "common.h"
+#include "plugins/plugins.h"
+#include "event/client_events.h"
+#include "ui/ui.h"
+#include "ui/window_list.h"
+#include "xmpp/resource.h"
+#include "xmpp/xmpp.h"
+#include "xmpp/muc.h"
+#include "xmpp/chat_session.h"
+#include "xmpp/chat_state.h"
 #include "xmpp/contact.h"
 #include "xmpp/roster_list.h"
-#include "config/tlscerts.h"
-#include "log.h"
-#include "xmpp/muc.h"
-#include "plugins/plugins.h"
+
 #ifdef HAVE_LIBOTR
 #include "otr/otr.h"
 #endif
+
 #ifdef HAVE_LIBGPGME
 #include "pgp/gpg.h"
 #endif
-#include "xmpp/resource.h"
-#include "xmpp/xmpp.h"
-#include "ui/ui.h"
-#include "ui/window_list.h"
-#include "event/client_events.h"
-#include "config/tlscerts.h"
+
 
 static void _check_autoaway(void);
 static void _init(char *log_level);