Don't display any completed items.

This commit is contained in:
Bradley M. Kuhn 2013-09-03 16:47:14 -04:00
parent 81d435f67a
commit 57dc803087

View file

@ -63,6 +63,8 @@ while (my $line = <ORG_MODE_AGENDA>) {
} else {
$type = $source;
}
next if $type =~ /(DELEGATED|DONE|DEFFERRED|CANCELLED)/i;
$startHour = "0$startHour" if length($startHour) == 1;
my $start = "$startHour:$startMin";
my $date = ParseDate("$dayLine $start");