Print both errors and problems.

This commit is contained in:
Dominik Pantůček 2023-03-28 19:02:34 +02:00
parent a849da5418
commit da29baa991
3 changed files with 16 additions and 6 deletions

View file

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