do not report seen_none in CR

This commit is contained in:
Enno Rehling 2016-09-18 12:44:03 +02:00
parent ac8332c896
commit 651ce11741
1 changed files with 3 additions and 1 deletions

View File

@ -1657,7 +1657,9 @@ report_computer(const char *filename, report_context * ctx, const char *charset)
/* traverse all regions */ /* traverse all regions */
for (r = ctx->first; r != ctx->last; r = r->next) { for (r = ctx->first; r != ctx->last; r = r->next) {
cr_output_region(F, ctx, r); if (r->seen.mode > seen_none) {
cr_output_region(F, ctx, r);
}
} }
report_crtypes(F, f->locale); report_crtypes(F, f->locale);
write_translations(F); write_translations(F);