+2024-02-25 Bruno Haible <bruno@clisp.org>
+
+ bitset: Avoid newlines at the end of translatable strings.
+ * lib/bitset/stats.c (bitset_percent_histogram_print,
+ bitset_log_histogram_print): Print a newline after msg.
+ (bitset_stats_print_1): Don't include a newline in the argument of
+ bitset_percent_histogram_print or bitset_log_histogram_print.
+ (bitset_stats_print): Move newlines outside of translatable strings.
+
2024-02-24 Collin Funk <collin.funk1@gmail.com>
gnulib-tool.py: Follow gnulib-tool changes, part 28.
if (!total)
return;
- fprintf (file, "%s %s", name, msg);
+ fprintf (file, "%s %s\n", name, msg);
for (unsigned i = 0; i < n_bins; i++)
fprintf (file, "%.0f-%.0f%%\t%8u (%5.1f%%)\n",
i * 100.0 / n_bins,
/* 2 * ceil (log10 (2) * (N - 1)) + 1. */
unsigned max_width = 2 * (unsigned) (0.30103 * (n_bins - 1) + 0.9999) + 1;
- fprintf (file, "%s %s", name, msg);
+ fprintf (file, "%s %s\n", name, msg);
{
unsigned i;
for (i = 0; i < 2; i++)
fprintf (file, _("%u bitset_lists\n"), stats->lists);
- bitset_log_histogram_print (file, name, _("count log histogram\n"),
+ bitset_log_histogram_print (file, name, _("count log histogram"),
BITSET_LOG_COUNT_BINS, stats->list_counts);
- bitset_log_histogram_print (file, name, _("size log histogram\n"),
+ bitset_log_histogram_print (file, name, _("size log histogram"),
BITSET_LOG_SIZE_BINS, stats->list_sizes);
- bitset_percent_histogram_print (file, name, _("density histogram\n"),
+ bitset_percent_histogram_print (file, name, _("density histogram"),
BITSET_DENSITY_BINS, stats->list_density);
}
if (!bitset_stats_info)
return;
- fprintf (file, _("Bitset statistics:\n\n"));
+ fprintf (file, "%s\n\n", _("Bitset statistics:"));
if (bitset_stats_info->runs > 1)
- fprintf (file, _("Accumulated runs = %u\n"), bitset_stats_info->runs);
+ {
+ fprintf (file, _("Accumulated runs = %u"), bitset_stats_info->runs);
+ fputc ('\n', file);
+ }
for (int i = 0; i < BITSET_TYPE_NUM; i++)
bitset_stats_print_1 (file, bitset_type_names[i],
if (ferror (file))
perror (_("cannot read stats file"));
else
- fprintf (stderr, _("bad stats file size\n"));
+ fprintf (stderr, "%s\n", _("bad stats file size"));
}
if (fclose (file) != 0)
perror (_("cannot read stats file"));