Validate months in periods.

This commit is contained in:
Dominik Pantůček 2023-03-28 14:51:02 +02:00
parent 5e28f91341
commit bfe763c599
2 changed files with 10 additions and 7 deletions

View file

@ -173,7 +173,7 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
((problems)
(let loop ((mb MB))
(when (not (null? mb))
(when (not (member-valid? (car mb)))
(when (member-has-issues? (car mb))
(newline)
(print-member-table (car mb))
(print-member-source (car mb)))