diff src/gaimrc.c @ 2906:538c58b43eff

[gaim-migrate @ 2919] save save me from this wandered around the town all the thousand things i might miss and you think we'll suffer much think we'll close our eyes just to see the light pass us by with tomorrow coming hope that i don't let you down again said i'm so glad to be here does it mean a thing if only i could breathe what you breathe if only i could see what you see sit we'll take our time watching the flowers grow all the friends we've known say goodbye and you did you suffer much did you close your eyes just to see the night rush on by gathered all around you hope that we don't let you down again i said i'm so glad to be here does it mean a thing if only i could breathe what you breathe if only i could see what you see i said i'm so glad to be here does it mean a thing if only i could breathe what you breathe if only i could see what you see if only i could just believe a thing --Moist, "Breathe" (as transcribed by http://www.veddma.com/veddma/moist.htm) Patches from: Ari Pollak Ben Miller Mark Doliner Sean Egan Vincas Ciziunas Thanks everyone. Somewhere in the middle of all of this it started to get really tedious and annoying. I think it's getting close to the point where I quit. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 21 Dec 2001 10:23:04 +0000
parents 0899f8c99a15
children aa590ecc67a7
line wrap: on
line diff
--- a/src/gaimrc.c	Thu Dec 20 21:01:59 2001 +0000
+++ b/src/gaimrc.c	Fri Dec 21 10:23:04 2001 +0000
@@ -49,6 +49,7 @@
 guint font_options;
 guint sound_options;
 guint away_options;
+guint away_resend;
 
 int report_idle, web_browser;
 struct save_pos blist_pos;
@@ -731,6 +732,7 @@
 			sound_options = atoi(p->value[0]);
 		} else if (!strcmp(p->option, "away_options")) {
 			away_options = atoi(p->value[0]);
+			away_resend = atoi(p->value[1]);
 		} else if (!strcmp(p->option, "font_xfld")) {
 			g_snprintf(fontxfld, sizeof(fontxfld), "%s", p->value[0]);
 		} else if (!strcmp(p->option, "font_face")) {
@@ -807,6 +809,9 @@
 		for (i = 0; disp_replace[i].val; i++)
 			if (display_options & disp_replace[i].old)
 				*disp_replace[i].val |= disp_replace[i].new;
+
+	if (!away_resend)
+		away_resend = 120;
 }
 
 static void gaimrc_write_options(FILE *f)