# HG changeset patch # User Mikael Berthe # Date 1344082906 -7200 # Node ID b51de2faa028afa8d4d70e4102cba8459b05325e # Parent 24ed43268d29b9e62bda5360232b4b7eafa1e857 Cosmetic changes, copyright update diff -r 24ed43268d29 -r b51de2faa028 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 + * Copyright (C) 2009-2012 Myhailo Danylenko + * Copyright (C) 2012 Mikael Berthe * * 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;