From 5e99fd5843b8508c9225786b4adc82630fd0fdd7 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Wed, 30 Oct 2024 17:43:48 -0500 Subject: [PATCH] Separate metric and unit constants for adolescent age --- doc/src/tables/follow_arrivals.m4 | 3 ++- include/limits.m4 | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/src/tables/follow_arrivals.m4 b/doc/src/tables/follow_arrivals.m4 index 45a4b04..aad4f0b 100644 --- a/doc/src/tables/follow_arrivals.m4 +++ b/doc/src/tables/follow_arrivals.m4 @@ -55,7 +55,8 @@ column when the |FOLLOW_ARRIVALS.AnimID| identifies an adolescent female, can only be used when the related |BIOGRAPHY_DATA|.\ |BIOGRAPHY_DATA.Sex| column is ``sdb_female`` and the individual's age on the |FOLLOWS|.\ |FOLLOWS.Date| is at least sdb_min_adolescent_age -old and not more than sdb_max_adolescent_age old. +sdb_min_adolescent_age_units old and not more than +sdb_max_adolescent_age sdb_max_adolescent_age_units old. .. _FOLLOW_ARRIVALS.FAID: diff --git a/include/limits.m4 b/include/limits.m4 index 062fc62..275fab0 100644 --- a/include/limits.m4 +++ b/include/limits.m4 @@ -43,8 +43,10 @@ define(`sdb_min_f_birth', `8') define(`sdb_min_f_birth_units', `years') dnl Ages of adolescents -define(`sdb_min_adolescent_age', `6 years') -define(`sdb_max_adolescent_age', `9 years') +define(`sdb_min_adolescent_age', `6') +define(`sdb_min_adolescent_age_units', `years') +define(`sdb_max_adolescent_age', `9') +define(`sdb_max_adolescent_age_units', `years') dnl The minimum age of a male at the birth of their first offspring define(`sdb_min_m_birth', `10') -- 2.34.1