diff -r e8959e0f6a37 -r 79721d976ad0 libpurple/log.h --- a/libpurple/log.h Sun Feb 02 17:35:34 2014 +0530 +++ b/libpurple/log.h Sun Feb 02 18:13:41 2014 +0530 @@ -429,7 +429,7 @@ * file handle and log path. * * This function is intended to be used as a "common" - * implementation of a logger's write function. + * implementation of a logger's write function. * It should only be passed to purple_log_logger_new() and never * called directly. */ @@ -447,7 +447,7 @@ * * This function should only be used with logs that are written * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's list function. + * a "common" implementation of a logger's list function. * It should only be passed to purple_log_logger_new() and never * called directly. * @@ -470,8 +470,8 @@ * * This function should only be used with logs that are written * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's total_size function. - * It should only be passed to purple_log_logger_new() and never + * a "common" implementation of a logger's total_size + * function. It should only be passed to purple_log_logger_new() and never * called directly. * * Returns: The size of all the logs with the specified extension @@ -488,7 +488,7 @@ * * This function should only be used with logs that are written * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's size function. + * a "common" implementation of a logger's size function. * It should only be passed to purple_log_logger_new() and never * called directly. * @@ -504,7 +504,7 @@ * * This function should only be used with logs that are written * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's delete function. + * a "common" implementation of a logger's delete function. * It should only be passed to purple_log_logger_new() and never * called directly. * @@ -520,8 +520,8 @@ * * This function should only be used with logs that are written * with purple_log_common_writer(). It's intended to be used as - * a "common" implementation of a logger's is_deletable function. - * It should only be passed to purple_log_logger_new() and never + * a "common" implementation of a logger's is_deletable + * function. It should only be passed to purple_log_logger_new() and never * called directly. * * Returns: A boolean indicating if the log is deletable. @@ -540,19 +540,22 @@ * @id: The logger's id. * @name: The logger's name. * @functions: The number of functions being passed. The following - * functions are currently available (in order): create, - * write, finalize, list, - * read, size, total_size, - * list_syslog, get_log_sets, remove, - * is_deletable. + * functions are currently available (in order): + * create, write, + * finalize, list, + * read, size, + * total_size, list_syslog, + * get_log_sets, remove, + * is_deletable. * For details on these functions, see PurpleLogLogger. * Functions may not be skipped. For example, passing - * create and write is acceptable (for a total - * of two functions). Passing create and - * finalize, however, is not. To accomplish that, the - * caller must pass create, %NULL (a placeholder for - * write), and finalize (for a total of 3 - * functions). + * create and write is + * acceptable (for a total of two functions). Passing + * create and finalize, + * however, is not. To accomplish that, the caller must pass + * create, %NULL (a placeholder for + * write), and finalize + * (for a total of 3 functions). * * Creates a new logger *