Finish getting all the problems.

This commit is contained in:
Dominik Pantůček 2023-03-27 17:51:56 +02:00
parent f6c77f57ef
commit 99a674f24e
2 changed files with 10 additions and 2 deletions

View file

@ -161,8 +161,9 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
((problems)
(let loop ((mb MB))
(when (not (null? mb))
(when (member-highlights? (car mb))
(when (not (member-valid? (car mb)))
(newline)
(print-member-table (car mb))
(print-member-source (car mb)))
(loop (cdr mb)))))
)