| 1747 | when printing multiple files in parallel. */ |
| 1748 | |
| 1749 | static void |
| 1750 | align_column (COLUMN *p) |
| 1751 | { |
| 1752 | padding_not_printed = p->start_position; |
| 1753 | if (col_sep_length < padding_not_printed) |
| 1754 | { |
| 1755 | pad_across_to (padding_not_printed - col_sep_length); |
| 1756 | padding_not_printed = ANYWHERE; |
| 1757 | } |
| 1758 | |
| 1759 | if (use_col_separator) |
| 1760 | print_sep_string (); |
| 1761 | |
| 1762 | if (p->numbered) |
| 1763 | add_line_number (p); |
| 1764 | } |
| 1765 | |
| 1766 | /* Print one page. |
| 1767 |
no test coverage detected