Mercurial > pidgin.yaz
changeset 14719:2e4690852fd7
[gaim-migrate @ 17473]
Fix some whitespace, some mine from one of the back before I was a developer,
and some I have no real idea how it happened.
Also add my IRC nick to the manpage, it seems to be a common thing.
committer: Tailor Script <tailor@pidgin.im>
author | Etan Reisner <pidgin@unreliablesource.net> |
---|---|
date | Fri, 13 Oct 2006 00:26:54 +0000 |
parents | d1e71d46c3db |
children | e68e20e6a653 |
files | doc/gaim.1.in gtk/gtkutils.c libgaim/mime.c |
diffstat | 3 files changed, 10 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/gaim.1.in Thu Oct 12 23:25:36 2006 +0000 +++ b/doc/gaim.1.in Fri Oct 13 00:26:54 2006 +0000 @@ -552,7 +552,7 @@ .br Christopher 'siege' O'Brien .br - Etan Reisner + Etan 'deryni' Reisner .br Tim 'marv' Ringenbach <\fImarv_sf@users.sf.net\fR> .br
--- a/gtk/gtkutils.c Thu Oct 12 23:25:36 2006 +0000 +++ b/gtk/gtkutils.c Fri Oct 13 00:26:54 2006 +0000 @@ -847,13 +847,15 @@ void gaim_gtk_save_accels_cb(GtkAccelGroup *accel_group, guint arg1, - GdkModifierType arg2, GClosure *arg3, - gpointer data) + GdkModifierType arg2, GClosure *arg3, + gpointer data) { - gaim_debug(GAIM_DEBUG_MISC, "accels", "accel changed, scheduling save.\n"); + gaim_debug(GAIM_DEBUG_MISC, "accels", + "accel changed, scheduling save.\n"); if (!accels_save_timer) - accels_save_timer = g_timeout_add(5000, gaim_gtk_save_accels, NULL); + accels_save_timer = g_timeout_add(5000, gaim_gtk_save_accels, + NULL); } gboolean @@ -862,7 +864,7 @@ char *filename = NULL; filename = g_build_filename(gaim_user_dir(), G_DIR_SEPARATOR_S, - "accels", NULL); + "accels", NULL); gaim_debug(GAIM_DEBUG_MISC, "accels", "saving accels to %s\n", filename); gtk_accel_map_save(filename); g_free(filename); @@ -877,7 +879,7 @@ char *filename = NULL; filename = g_build_filename(gaim_user_dir(), G_DIR_SEPARATOR_S, - "accels", NULL); + "accels", NULL); gtk_accel_map_load(filename); g_free(filename); }
--- a/libgaim/mime.c Thu Oct 12 23:25:36 2006 +0000 +++ b/libgaim/mime.c Fri Oct 13 00:26:54 2006 +0000 @@ -352,7 +352,7 @@ *data = gaim_base16_decode(part->data->str, len); } else if(! g_ascii_strcasecmp(enc, "base64")) { - *data = gaim_base64_decode(part->data->str, len); + *data = gaim_base64_decode(part->data->str, len); } else if(! g_ascii_strcasecmp(enc, "quoted-printable")) { *data = gaim_quotedp_decode(part->data->str, len);