changeset 393:f8f3c7493457

Whitespace cleanup
author Mikael Berthe <mikael@lilotux.net>
date Thu, 04 Aug 2005 23:04:54 +0100
parents 6329c9601704
children 4617d0f029ea
files mcabber/src/commands.c mcabber/src/compl.c mcabber/src/hbuf.c mcabber/src/hooks.c mcabber/src/hooks.h mcabber/src/jabglue.c mcabber/src/list.h mcabber/src/main.c mcabber/src/roster.c mcabber/src/screen.c mcabber/src/settings.c mcabber/src/utils.c
diffstat 12 files changed, 24 insertions(+), 24 deletions(-) [+]
line wrap: on
line diff
--- a/mcabber/src/commands.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/commands.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * commands.c     -- user commands handling
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -214,7 +214,7 @@
 void send_message(const char *msg)
 {
   const char *jid;
-      
+
   if (!current_buddy) {
     scr_LogPrint(LPRINT_NORMAL, "No buddy currently selected.");
     return;
@@ -731,7 +731,7 @@
 {
   guint assign;
   const gchar *option, *value;
-  
+
   assign = parse_assigment(arg, &option, &value);
   if (!option) {
     scr_LogPrint(LPRINT_NORMAL, "Huh?");
@@ -761,7 +761,7 @@
 {
   guint assign;
   const gchar *alias, *value;
-  
+
   assign = parse_assigment(arg, &alias, &value);
   if (!alias) {
     scr_LogPrint(LPRINT_NORMAL, "Huh?");
@@ -800,7 +800,7 @@
 {
   guint assign;
   const gchar *keycode, *value;
-  
+
   assign = parse_assigment(arg, &keycode, &value);
   if (!keycode) {
     scr_LogPrint(LPRINT_NORMAL, "Huh?");
--- a/mcabber/src/compl.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/compl.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * compl.c      -- Completion system
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
--- a/mcabber/src/hbuf.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/hbuf.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * hbuf.c       -- History buffer implementation
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -182,7 +182,7 @@
       hbuf_b_curr->ptr_end = hbuf_b_next->ptr_end;
       g_free(hbuf_b_next);
       g_list_delete_link(curr_elt, next_elt);
-    } else 
+    } else
       curr_elt = next_elt;
   }
   // #2 Go back to head and create non-persistent blocks when needed
--- a/mcabber/src/hooks.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/hooks.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * hooks.c     -- Hooks layer
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -75,7 +75,7 @@
   hk_ext_cmd(jid, 'M', 'S', NULL);
 }
 
-inline void hk_statuschange(const char *jid, time_t timestamp, 
+inline void hk_statuschange(const char *jid, time_t timestamp,
         enum imstatus status, const char *status_msg)
 {
   scr_LogPrint(LPRINT_LOGNORM, "Buddy status has changed: [%c>%c] <%s> %s",
--- a/mcabber/src/hooks.h	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/hooks.h	Thu Aug 04 23:04:54 2005 +0100
@@ -8,7 +8,7 @@
 inline void hk_message_in(const char *jid, time_t timestamp, const char *msg,
                           const char *type);
 inline void hk_message_out(const char *jid, time_t timestamp, const char *msg);
-inline void hk_statuschange(const char *jid, time_t timestamp, 
+inline void hk_statuschange(const char *jid, time_t timestamp,
         enum imstatus status, char const *status_msg);
 inline void hk_mystatuschange(time_t timestamp,
         enum imstatus old_status, enum imstatus new_status, const char *msg);
--- a/mcabber/src/jabglue.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/jabglue.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * jabglue.c    -- Jabber protocol handling
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  * Parts come from the centericq project:
  * Copyright (C) 2002-2005 by Konstantin Klyagin <konst@konst.org.ua>
@@ -111,8 +111,8 @@
 char *compose_jid(const char *username, const char *servername,
         const char *resource)
 {
-  char *jid = g_new(char, 
-          strlen(username)+strlen(servername)+strlen(resource)+3);
+  char *jid = g_new(char, 3 +
+                    strlen(username) + strlen(servername) + strlen(resource));
   strcpy(jid, username);
   strcat(jid, "@");
   strcat(jid, servername);
--- a/mcabber/src/list.h	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/list.h	Thu Aug 04 23:04:54 2005 +0100
@@ -25,7 +25,7 @@
 } while (0)
 
 /*
- * Insert a new entry between two known consecutive entries. 
+ * Insert a new entry between two known consecutive entries.
  *
  * This is only for internal list manipulation where we know
  * the prev/next entries already!
--- a/mcabber/src/main.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/main.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * main.c
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  * Parts of this file come from Cabber <cabber@ajmacias.com>
  *
--- a/mcabber/src/roster.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/roster.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * roster.c     -- Local roster implementation
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -539,7 +539,7 @@
   // Remove the buddy from current group
   sl_group = &((roster*)((GSList*)roster_usr->list)->data)->list;
   *sl_group = g_slist_remove(*sl_group, rosterdata);
-  
+
   // Add the buddy to its new group; actually we "clone" this buddy...
   sl_clone = roster_add_user(roster_usr->jid, roster_usr->name,
           newgroupname, roster_usr->type);
--- a/mcabber/src/screen.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/screen.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * screen.c     -- UI stuff
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  * Parts of this file come from the Cabber project <cabber@ajmacias.com>
  *
@@ -277,7 +277,7 @@
   int lines;
   int cols;
   window_entry_t *tmp;
-  
+
   do {
     tmp = calloc(1, sizeof(window_entry_t));
   } while (!tmp);
--- a/mcabber/src/settings.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/settings.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * settings.c   -- Configuration stuff
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
@@ -50,7 +50,7 @@
 static GSList *settings_find(GSList *list, const gchar *key)
 {
   GSList *ptr;
-  
+
   if (!list) return NULL;
 
   for (ptr = list ; ptr; ptr = g_slist_next(ptr))
--- a/mcabber/src/utils.c	Thu Aug 04 22:55:10 2005 +0100
+++ b/mcabber/src/utils.c	Thu Aug 04 23:04:54 2005 +0100
@@ -1,6 +1,6 @@
 /*
  * utils.c      -- Various utility functions
- * 
+ *
  * Copyright (C) 2005 Mikael Berthe <bmikael@lists.lilotux.net>
  * ut_* functions are derived from Cabber debug/log code.
  * from_iso8601() comes from the Gaim project.
@@ -76,7 +76,7 @@
 void ut_WriteLog(unsigned int flag, const char *data)
 {
   if (!DebugEnabled || !FName) return;
-  
+
   if (((DebugEnabled == 2) && (flag & (LPRINT_LOG|LPRINT_DEBUG))) ||
       ((DebugEnabled == 1) && (flag & LPRINT_LOG))) {
     FILE *fp = fopen(FName, "a+");