From f1bf38add6df09043e87e7ac387787ca36e7f87d Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Sun, 6 Aug 2006 14:36:14 +0000 Subject: updated calls to recur_item_inday() --- src/args.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/args.c b/src/args.c index 8718274..ebc206f 100755 --- a/src/args.c +++ b/src/args.c @@ -1,4 +1,4 @@ -/* $calcurse: args.c,v 1.2 2006/08/02 17:51:38 culot Exp $ */ +/* $calcurse: args.c,v 1.3 2006/08/06 14:36:14 culot Exp $ */ /* * Calcurse - text-based organizer @@ -225,8 +225,8 @@ int app_arg(int add_line, int year, int month, int day, long date) * that date. */ for (re = recur_elist; re != 0; re = re->next) { - if (recur_item_inday(re->day, re->rpt->type, re->rpt->freq, - re->rpt->until, today)) { + if (recur_item_inday(re->day, re->exc, re->rpt->type, + re->rpt->freq, re->rpt->until, today)) { app_found = 1; if (add_line) { fputs("\n", stdout); @@ -259,8 +259,8 @@ int app_arg(int add_line, int year, int month, int day, long date) /* Same process is performed but this time on the appointments. */ for (ra = recur_alist; ra != 0; ra = ra->next) { - if (recur_item_inday(ra->start, ra->rpt->type, ra->rpt->freq, - ra->rpt->until, today)) { + if (recur_item_inday(ra->start, ra->exc, ra->rpt->type, + ra->rpt->freq, ra->rpt->until, today)) { app_found = 1; if (add_line) { fputs("\n",stdout); -- cgit v1.2.3-54-g00ecf