Skip to content

Commit

Permalink
Warn where there may be more residential information
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed May 23, 2024
1 parent 0640c0c commit fdbf33a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gedcom
Original file line number Diff line number Diff line change
Expand Up @@ -5034,6 +5034,9 @@ sub print_person
}
}
}
if($with_mother && !$living_with{'mother'}) {
complain({ person => $person, warning => "May have been living with mother on $rdate, but the addresses don't match or aren't detailed enough to be sure" });
}
}
my $with_father;
my $same_road_as_father = 0;
Expand Down Expand Up @@ -5074,6 +5077,9 @@ sub print_person
}
}
}
if($with_father && !$living_with{'father'}) {
complain({ person => $person, warning => "May have been living with father on $rdate, but the addresses don't match or aren't detailed enough to be sure" });
}
}
if($living_with{'mother'} || $living_with{'father'}) {
if($bdiff->in_units('years') >= 30) {
Expand Down

0 comments on commit fdbf33a

Please sign in to comment.