Cosmetic changes, copyright update
authorMikael Berthe <mikael@lilotux.net>
Sat, 04 Aug 2012 14:21:46 +0200
changeset 27 b51de2faa028
parent 26 24ed43268d29
child 28 940e15e0075b
Cosmetic changes, copyright update
marking.c
--- a/marking.c	Sat Aug 04 14:17:36 2012 +0200
+++ b/marking.c	Sat Aug 04 14:21:46 2012 +0200
@@ -1,8 +1,8 @@
-
 /*
  * marking.c            -- Actions on multiple buddies
  *
- * Copyrigth (C) 2009      Myhailo Danylenko <isbear@ukrpost.net>
+ * Copyright (C) 2009-2012 Myhailo Danylenko <isbear@ukrpost.net>
+ * Copyright (C) 2012      Mikael Berthe <mikael@lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -36,7 +36,8 @@
 void marking_init   (void);
 void marking_uninit (void);
 
-#define DESCRIPTION ( "Actions on multiple marked buddies\nProvides commands /mark and /marked" )
+#define DESCRIPTION ( "Actions on multiple marked buddies\n" \
+					  "Provides commands /mark and /marked" )
 
 module_info_t info_marking = {
 	.branch      = MCABBER_BRANCH,
@@ -207,7 +208,8 @@
 		char *format = args[1];
 
 		if (!format)
-			scr_log_print (LPRINT_NORMAL, "You must specify action to do with marked JIDs");
+			scr_log_print (LPRINT_NORMAL,
+				       "You must specify action to do with marked JIDs");
 		else {
 			char     *pos   = format;
 			gboolean  found = FALSE;
@@ -219,7 +221,8 @@
 				else if (*(pos + 1) == '%')
 					++pos;
 				else {
-					scr_log_print (LPRINT_NORMAL, "Action string must not contain any other %%-sequesnces!");
+					scr_log_print (LPRINT_NORMAL,
+						       "Action string must not contain any other %%-sequences!");
 					error = TRUE;
 					break;
 				}
@@ -228,7 +231,8 @@
 			}
 
 			if (!found)
-				scr_log_print (LPRINT_NORMAL, "Action string must contain one %%s!");
+				scr_log_print (LPRINT_NORMAL,
+					       "Action string must contain one %%s!");
 			else if (!error) {
 				GSList *mel;