# HG changeset patch # User Etan Reisner # Date 1160699214 0 # Node ID 2e4690852fd7546f808c3ca4ea54842cb9c3078e # Parent d1e71d46c3dbc1db4f425d5b9c445d3e0968933b [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 diff -r d1e71d46c3db -r 2e4690852fd7 doc/gaim.1.in --- 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 diff -r d1e71d46c3db -r 2e4690852fd7 gtk/gtkutils.c --- 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); } diff -r d1e71d46c3db -r 2e4690852fd7 libgaim/mime.c --- 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);